File size: 426 Bytes
9595e1d f24be86 9595e1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
param name string
param location string = resourceGroup().location
param tags object = {}
resource keyVault 'Microsoft.KeyVault/vaults@2022-07-01' = {
name: name
location: location
tags: tags
properties: {
tenantId: subscription().tenantId
sku: { family: 'A', name: 'standard' }
enableRbacAuthorization: true
}
}
output endpoint string = keyVault.properties.vaultUri
output name string = keyVault.name
|