Changed Service Principal Creation sequence to comply with newer CLI reqs
This commit is contained in:
parent
403fe17f96
commit
eb75dbb693
|
@ -165,7 +165,7 @@ createServicePrincipal() {
|
||||||
newer_syntax = true
|
newer_syntax = true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [newer_syntax -eq true ]; then
|
if [ "${newer_syntax}" = true ]; then
|
||||||
azure ad sp create -a $azure_client_id
|
azure ad sp create -a $azure_client_id
|
||||||
else
|
else
|
||||||
azure ad sp create $azure_client_id
|
azure ad sp create $azure_client_id
|
||||||
|
|
Loading…
Reference in New Issue