@@ -103,10 +103,10 @@ function Set-CloudSpecificApplicationInsightsConfig {
103103 Set-ProcessAndMachineEnvVariables " APPLICATIONINSIGHTS_AUTH" " NTc5ZDRiZjUtMTA1Mi0wODQzLThhNTYtMjU5YzEyZmJhZTkyCg=="
104104 Set-ProcessAndMachineEnvVariables " APPLICATIONINSIGHTS_ENDPOINT" " https://dc.applicationinsights.azure.microsoft.scloud/v2/track"
105105 }
106- " bleu " {
107- # TODO: Bleu cloud is a new cloud environment, we don't have AI in this cloud yet so using Public cloud for now.
108- # Update this once we have AI in Bleu cloud .
109- Write-Host " Set-CloudSpecificApplicationInsightsConfig: Setting Application Insights configuration for Bleu Cloud "
106+ " azurebleucloud " {
107+ # TODO: azurebleucloud is a new cloud environment; we don't have AI in this cloud yet so using Public cloud for now.
108+ # Update this once we have AI in azurebleucloud .
109+ Write-Host " Set-CloudSpecificApplicationInsightsConfig: Setting Application Insights configuration for azurebleucloud "
110110 Set-ProcessAndMachineEnvVariables " APPLICATIONINSIGHTS_AUTH" " NzAwZGM5OGYtYTdhZC00NThkLWI5NWMtMjA3ZjM3NmM3YmRi"
111111 Set-ProcessAndMachineEnvVariables " APPLICATIONINSIGHTS_ENDPOINT" " https://dc.applicationinsights.azure.com/v2/track"
112112 }
@@ -204,7 +204,7 @@ function Is-SupportedCloudEnvironment {
204204 param (
205205 [string ]$cloudEnvironment
206206 )
207- $supportedCloudEnvironments = @ (" azurepubliccloud" , " azurechinacloud" , " azureusgovernmentcloud" , " usnat" , " ussec" , " bleu " )
207+ $supportedCloudEnvironments = @ (" azurepubliccloud" , " azurechinacloud" , " azureusgovernmentcloud" , " usnat" , " ussec" , " azurebleucloud " )
208208 if ($supportedCloudEnvironments -contains $cloudEnvironment ) {
209209 return $true
210210 }
@@ -228,7 +228,7 @@ function Get-ClusterCloudEnvironment{
228228 " opinsights.azure.us" { $cloud_environment = " azureusgovernmentcloud" }
229229 " opinsights.azure.eaglex.ic.gov" { $cloud_environment = " usnat" }
230230 " opinsights.azure.microsoft.scloud" { $cloud_environment = " ussec" }
231- " opinsights.sovcloud-api.fr" { $cloud_environment = " bleu " }
231+ " opinsights.sovcloud-api.fr" { $cloud_environment = " azurebleucloud " }
232232 }
233233 } else {
234234 Write-Host " Domain name either null or empty. Defaulting to azurepubliccloud."
@@ -275,7 +275,7 @@ function Get-McsAzureResourceEndpoint {
275275 " azureusgovernmentcloud" { $mcs_azure_resource_endpoint = " https://monitor.azure.us/" }
276276 " usnat" { $mcs_azure_resource_endpoint = " https://monitor.azure.eaglex.ic.gov/" }
277277 " ussec" { $mcs_azure_resource_endpoint = " https://monitor.azure.microsoft.scloud/" }
278- " bleu " { $mcs_azure_resource_endpoint = " https://monitor.sovcloud-api.fr/" }
278+ " azurebleucloud " { $mcs_azure_resource_endpoint = " https://monitor.sovcloud-api.fr/" }
279279 }
280280 }
281281 return $mcs_azure_resource_endpoint
@@ -293,7 +293,7 @@ function Get-McsEndpoint {
293293 " azureusgovernmentcloud" { $mcs_endpoint = " monitor.azure.us" }
294294 " usnat" { $mcs_endpoint = " monitor.azure.eaglex.ic.gov" }
295295 " ussec" { $mcs_endpoint = " monitor.azure.microsoft.scloud" }
296- " bleu " { $mcs_endpoint = " monitor.sovcloud-api.fr" }
296+ " azurebleucloud " { $mcs_endpoint = " monitor.sovcloud-api.fr" }
297297 }
298298 }
299299 return $mcs_endpoint
@@ -327,7 +327,7 @@ function Get-McsGlobalEndpoint{
327327 " azureusgovernmentcloud" { $mcs_globalendpoint = " https://global.handler.control.monitor.azure.us" }
328328 " usnat" { $mcs_globalendpoint = " https://global.handler.control.monitor.azure.eaglex.ic.gov" }
329329 " ussec" { $mcs_globalendpoint = " https://global.handler.control.monitor.azure.microsoft.scloud" }
330- " bleu " { $mcs_globalendpoint = " https://global.handler.control.monitor.sovcloud-api.fr" }
330+ " azurebleucloud " { $mcs_globalendpoint = " https://global.handler.control.monitor.sovcloud-api.fr" }
331331 }
332332 }
333333 }
0 commit comments