Skip to content

Commit

Permalink
Merge pull request hashicorp#6590 from abhinaykumar/patch-1
Browse files Browse the repository at this point in the history
bug-fix: syntax error in createApplication()
  • Loading branch information
boumenot authored Aug 20, 2018
2 parents ca74351 + f7f6a84 commit a1fa35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/azure-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ createApplication() {

if [ "$azure_client_id" != "" ]; then
echo "==> application already exist, grab appId"
azure_client_id=$(az ad app list az ad app list --output json | jq -r '.[] | select(.displayName | contains("'$meta_name'")) .appId')
azure_client_id=$(az ad app list --output json | jq -r '.[] | select(.displayName | contains("'$meta_name'")) .appId')
else
echo "==> application does not exist"
azure_client_id=$(az ad app create --display-name $meta_name --identifier-uris http://$meta_name --homepage http://$meta_name --password $azure_client_secret --output json | jq -r .appId)
Expand Down

0 comments on commit a1fa35d

Please sign in to comment.