We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb1ef4 commit 240d20aCopy full SHA for 240d20a
e2e/scripts/azure_key.sh
@@ -25,7 +25,10 @@ listKeys() {
25
26
create() {
27
log "Creating new key for APP_ID $APP_ID"
28
- az ad app credential reset --id "$APP_ID" --append --query password --only-show-errors -o tsv
+ $SECRET=$(az ad app credential reset --id "$APP_ID" --append --query password --only-show-errors -o tsv)
29
+ putCredentialKeyVal "clientId" "$APP_ID"
30
+ putCredentialKeyVal "clientSecret" "$SECRET"
31
+ saveCredentialsToGarden "$AZURE_GARDEN_SECRET"
32
}
33
34
0 commit comments