Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/onboarding/managed/disable-monitoring.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ remove_monitoring_tags()

if [ "$isUsingServicePrincipal" = true ] ; then
echo "login to the azure using provided service principal creds"
az login --service-principal --username $servicePrincipalClientId --password $servicePrincipalClientSecret --tenant $servicePrincipalTenantId
az login --service-principal --username="$servicePrincipalClientId" --password="$servicePrincipalClientSecret" --tenant="$servicePrincipalTenantId"
else
echo "login to the azure interactively"
az login --use-device-code
Expand Down
2 changes: 1 addition & 1 deletion scripts/onboarding/managed/enable-monitoring.sh
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ install_helm_chart() {
login_to_azure() {
if [ "$isUsingServicePrincipal" = true ]; then
echo "login to the azure using provided service principal creds"
az login --service-principal --username $servicePrincipalClientId --password $servicePrincipalClientSecret --tenant $servicePrincipalTenantId
az login --service-principal --username="$servicePrincipalClientId" --password="$servicePrincipalClientSecret" --tenant="$servicePrincipalTenantId"
else
echo "login to the azure interactively"
az login --use-device-code
Expand Down
2 changes: 1 addition & 1 deletion scripts/onboarding/managed/upgrade-monitoring.sh
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ upgrade_helm_chart_release() {
login_to_azure() {
if [ "$isUsingServicePrincipal" = true ]; then
echo "login to the azure using provided service principal creds"
az login --service-principal --username $servicePrincipalClientId --password $servicePrincipalClientSecret --tenant $servicePrincipalTenantId
az login --service-principal --username="$servicePrincipalClientId" --password="$servicePrincipalClientSecret" --tenant="$servicePrincipalTenantId"
else
echo "login to the azure interactively"
az login --use-device-code
Expand Down