Changed Service Principal Creation sequence to comply with newer CLI reqs

pull/4133/head
Eugene Chuvyrov 9 years ago
parent 403fe17f96
commit eb75dbb693

@ -165,7 +165,7 @@ createServicePrincipal() {
newer_syntax = true
fi
if [newer_syntax -eq true ]; then
if [ "${newer_syntax}" = true ]; then
azure ad sp create -a $azure_client_id
else
azure ad sp create $azure_client_id

Loading…
Cancel
Save