We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating this as a tracking issue for problems we are seeing in the KeyVault API for CDK.
Give the following CDK code:
var keyVault = construct.AddKeyVault(name: "mykv"); var secret = new KeyVaultSecret(construct, name: "mysecret");
We get the following Bicep:
targetScope = 'resourceGroup' @description('') param location string = resourceGroup().location resource keyVault_OlyAsQ0DX 'Microsoft.KeyVault/vaults@2023-02-01' = { name: 'mykv-temp' location: location properties: { tenantId: tenant().tenantId sku: { name: 'standard' family: 'A' } enableRbacAuthorization: true } } resource keyVaultSecret_dPFd3FfoI 'Microsoft.KeyVault/vaults/secrets@2023-02-01' = { parent: keyVault_OlyAsQ0DX name: 'mysecret' location: location properties: { value: '00000000-0000-0000-0000-000000000000' } } output vaultUri string = keyVault_OlyAsQ0DX.properties.vaultUri
toLower(take(concat('mykv', uniqueString(resourceGroup().id)), 24))
The content you are editing has changed. Please copy your edits and refresh the page.
The text was updated successfully, but these errors were encountered:
JoshLove-msft
No branches or pull requests
Creating this as a tracking issue for problems we are seeing in the KeyVault API for CDK.
Give the following CDK code:
We get the following Bicep:
toLower(take(concat('mykv', uniqueString(resourceGroup().id)), 24))
#42351Tasks
toLower(take(concat('mykv', uniqueString(resourceGroup().id)), 24))
#42351The text was updated successfully, but these errors were encountered: