You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message="Azure environment variables are set, but are not unique GUIDs. There is at least one duplicate:$envVarValidationOutput."
101
+
result="Failure"
102
+
}
103
+
}
104
+
$hasFailure=$true
62
105
} else {
106
+
if($envVarAtLeastOneSet) {
107
+
$checkResults+=@{
108
+
message="At least one environment variables is set, but the other expected environment variables are not set. This could cause Terraform to fail in unexpected ways. Set environment variables: $($envVarsWithValue-join"")."
109
+
result="Warning"
110
+
}
111
+
}
112
+
63
113
# Check if Azure CLI is installed
64
114
Write-Verbose"Checking Azure CLI installation"
65
115
$azCliPath=Get-Command az -ErrorAction SilentlyContinue
0 commit comments