mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-18 12:32:13 +00:00
hostinfo: detect when running in Azure App Service.
Signed-off-by: Denton Gentry <dgentry@tailscale.com>
This commit is contained in:
parent
3ab587abe7
commit
4b71291cdb
@ -68,6 +68,9 @@ func osVersionLinux() string {
|
|||||||
if inHerokuDyno() {
|
if inHerokuDyno() {
|
||||||
attrBuf.WriteString("; env=hr")
|
attrBuf.WriteString("; env=hr")
|
||||||
}
|
}
|
||||||
|
if inAzureAppService() {
|
||||||
|
attrBuf.WriteString("; env=az")
|
||||||
|
}
|
||||||
attr := attrBuf.String()
|
attr := attrBuf.String()
|
||||||
|
|
||||||
id := m["ID"]
|
id := m["ID"]
|
||||||
@ -138,6 +141,7 @@ func inAwsLambda() bool {
|
|||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func inHerokuDyno() bool {
|
func inHerokuDyno() bool {
|
||||||
// https://devcenter.heroku.com/articles/dynos#local-environment-variables
|
// https://devcenter.heroku.com/articles/dynos#local-environment-variables
|
||||||
if os.Getenv("PORT") != "" && os.Getenv("DYNO") != "" {
|
if os.Getenv("PORT") != "" && os.Getenv("DYNO") != "" {
|
||||||
@ -145,3 +149,11 @@ func inHerokuDyno() bool {
|
|||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func inAzureAppService() bool {
|
||||||
|
if os.Getenv("APPSVC_RUN_ZIP") != "" && os.Getenv("WEBSITE_STACK") != "" &&
|
||||||
|
os.Getenv("WEBSITE_AUTH_AUTO_AAD") != "" {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user