mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-23 00:23:36 +01:00
22b2caffc6
* remove dns based cloud checks * remove dns based cloud checks
26 lines
434 B
Go
26 lines
434 B
Go
package detect_cloud
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
func detectGCP(ctx context.Context) string {
|
|
req, err := http.NewRequestWithContext(ctx, "GET", "http://169.254.169.254", nil)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
req.Header.Add("Metadata-Flavor", "Google")
|
|
|
|
resp, err := hc.Do(req)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
if resp.StatusCode == http.StatusOK {
|
|
return "Google Cloud Platform"
|
|
}
|
|
return ""
|
|
}
|