Skip to content

Commit

Permalink
Refactor keyVault.bicep: Update properties in keyVault resource
Browse files Browse the repository at this point in the history
  • Loading branch information
crlsocro committed Sep 19, 2024
1 parent 94d0b0c commit f57e64e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions infra/modules/keyVault.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ param location string
resource keyVault 'Microsoft.KeyVault/vaults@2023-07-01' = {
name: resourceName
location: location
sku: {
family: 'A'
name: 'string'
properties: {
tenantId: subscription().tenantId
sku: {
family: 'A'
name: 'string'
}
}
enableSoftDelete: true
softDeleteRetentionInDays: 90
Expand Down

0 comments on commit f57e64e

Please sign in to comment.