add missing comma

This commit is contained in:
Adrien Delorme 2018-08-23 15:48:14 +02:00
parent 8560fe89e5
commit a0a0594a35
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ $ cat <<EOF
"client_id": $(az ad app list | jq ".[] | select(.displayName == \"$APPNAME\") | .appId"),
"client_secret": "$PASSWORD",
"location": "$LOCATION",
"tenant_id": $(az account show | jq '.tenantId')
"tenant_id": $(az account show | jq '.tenantId'),
"object_id": $(az ad app list | jq ".[] | select(.displayName == \"$APPNAME\") | .objectId")
}
EOF