Skip to content

Commit

Permalink
Update main.bicep
Browse files Browse the repository at this point in the history
  • Loading branch information
riosengineer authored Aug 22, 2024
1 parent 14c3c2e commit 05e4af8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bicep-examples/conditions/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ output kvUri string = KeyVault.outputs.name
module KeyVault2 'br/public:avm/res/key-vault/vault:0.6.2' = {
name: '${uniqueString(deployment().name, location)}-kv'
params: {
name: kvName
name: kvName2
location: location
enablePurgeProtection: env == 'preprod' || env == 'prod' ? true : false
enableSoftDelete: true
softDeleteRetentionInDays: 7
enableRbacAuthorization: true
sku: kvSku
}
}
}

0 comments on commit 05e4af8

Please sign in to comment.