We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b63cb commit cc5d4a1Copy full SHA for cc5d4a1
deploy/update.ps1
@@ -88,6 +88,13 @@ $IPAM_PUBLIC_ACR = "azureipam.azurecr.io"
88
# Set preference variables
89
$ErrorActionPreference = "Stop"
90
91
+# Hide Azure PowerShell SDK Warnings
92
+$Env:SuppressAzurePowerShellBreakingChangeWarnings = $true
93
+
94
+# Hide Azure PowerShell SDK & Azure CLI Survey Prompts
95
+$Env:AzSurveyMessage = $false
96
+$Env:AZURE_CORE_SURVEY_MESSAGE = $false
97
98
# Set Log File Location
99
$logPath = Join-Path -Path $ROOT_DIR -ChildPath "logs"
100
New-Item -ItemType Directory -Path $logpath -Force | Out-Null
0 commit comments