Skip to content

Commit

Permalink
chore: Update Foundry Web App deployment to use 2023-05-01 API versio…
Browse files Browse the repository at this point in the history
…n for storage account key retrieval
  • Loading branch information
PlagueHO committed Oct 5, 2024
1 parent dd7533a commit ba3b27d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated Bicep resource versions to latest for Azure App Service and
Storage.
- Set `alwaysOn` to `true` for the Foundry Web App.
- Update Foundry Web App Deployment to get the storage account key via
`2023-05-01` API version.

## [0.5.0] - 2024-06-01

Expand Down
2 changes: 1 addition & 1 deletion bicep/modules/webAppFoundryVtt.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ resource webApp 'Microsoft.Web/sites@2023-12-01' = {
accountName: storageAccountName
shareName: 'foundryvttdata'
mountPath: '/data'
accessKey: listkeys(resourceId('Microsoft.Storage/storageAccounts', storageAccountName), '2021-04-01').keys[0].value
accessKey: listkeys(resourceId('Microsoft.Storage/storageAccounts', storageAccountName), '2023-05-01').keys[0].value
}
}
httpLoggingEnabled: true
Expand Down

0 comments on commit ba3b27d

Please sign in to comment.