Skip to content

Commit

Permalink
Fixing positional arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ebronson68 committed Aug 21, 2024
1 parent 48e2bb0 commit 433f2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/azfunction-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:
keyVaultId=$(az keyvault show --name ${{ env.keyVaultName }} --query id --output tsv)
# Assign the Key Vault Secrets User role to the managed identity using object ID and principal type
az role assignment create --role "Key Vault Secrets User" --assignee-object-id --assignee-principal-type ServicePrincipal ${{ env.functionAppIdentity }} --scope $keyVaultId
az role assignment create --role "Key Vault Secrets User" --assignee-object-id ${{ env.functionAppIdentity }} --assignee-principal-type ServicePrincipal --scope $keyVaultId
- name: Retrieve environment variables
if: ${{ env.AZURE_CREDENTIALS_SET != 'false' }}
Expand Down

0 comments on commit 433f2c9

Please sign in to comment.