Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions challenges/challenge_04.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ jobs:
steps:
- name: "Login via Azure CLI"
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
```

To see if the workflow is authenticated and uses the right subscription, we
Expand Down Expand Up @@ -222,8 +222,7 @@ action to deploy the ARM template:
- uses: azure/arm-deploy@v1
with:
resourceGroupName: ${{ env.ResourceGroupName }}
subscription: ${{ secrets.AZURE_SUBSCRIPTION }}
template: './challenges/challenge_03/storage.json'
template: './challenges/templates/challenge_03/storage.json'
parameters: storageAccountName=${{ env.StorageAccountName }}
```

Expand Down Expand Up @@ -263,7 +262,7 @@ jobs:
- uses: azure/arm-deploy@v1
with:
resourceGroupName: ${{ env.ResourceGroupName }}
template: './challenges/challenge_03/storage.json'
template: './challenges/templates/challenge_03/storage.json'
parameters: storageAccountName=${{ env.StorageAccountName }}
```

Expand Down