Prometheus: Update audiences for Azure auth (#65498)

* Update US Gov audience for Azure auth in Prometheus

* Update China audience for Azure auth in Prometheus
This commit is contained in:
Sergey Kostrukov 2023-03-29 11:49:37 -07:00 committed by GitHub
parent 2b59d1abb6
commit 746b70bb86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,8 +18,8 @@ import (
var (
azurePrometheusScopes = map[string][]string{
azsettings.AzurePublic: {"https://prometheus.monitor.azure.com/.default"},
azsettings.AzureChina: {"https://prometheus.monitor.chinacloudapp.cn/.default"},
azsettings.AzureUSGovernment: {"https://prometheus.monitor.usgovcloudapi.net/.default"},
azsettings.AzureChina: {"https://prometheus.monitor.azure.cn/.default"},
azsettings.AzureUSGovernment: {"https://prometheus.monitor.azure.us/.default"},
}
)