mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 00:02:23 +00:00
23 lines
691 B
Rust
23 lines
691 B
Rust
/*
|
|
* Author: Ruben Fiszel
|
|
* Copyright: Windmill Labs, Inc 2022
|
|
* This file and its contents are licensed under the AGPLv3 License.
|
|
* Please see the included NOTICE for copyright information and
|
|
* LICENSE-AGPL for a copy of the license.
|
|
*/
|
|
|
|
//! Used to determine the internet address that connections from workers will appear to come from.
|
|
//!
|
|
//! For users writing scripts to access their infrastructure with firewalls requiring incoming
|
|
//! connections to be from whitelisted IP addresses.
|
|
|
|
use reqwest::Result;
|
|
|
|
pub async fn get_ip() -> Result<String> {
|
|
reqwest::get("https://hub.windmill.dev/getip")
|
|
.await?
|
|
.error_for_status()?
|
|
.text()
|
|
.await
|
|
}
|