Azure / bicep-types-az

Bicep type definitions for ARM resources
MIT License
84 stars 27 forks source link

Resource type "Microsoft.KeyVault/vaults@2023-07-01" does not have types available #1936

Open spxnstevens opened 11 months ago

spxnstevens commented 11 months ago

Resource Type

Microsoft.KeyVault/vaults

Api Version

2023-07-01

Issue Type

Type is unavailable

Other Notes

No response

Bicep Repro

@description('keyvault name the key is being added to')
param keyVaultName string

@description('The name of the key being added to the keyvault')
param keyName string

@description('The value of the key')
param keyValue string

@description('The content type of the key')
param contentType string = 'plain/text'

resource kv 'Microsoft.KeyVault/vaults@2023-07-01' existing = {
  name: keyVaultName
}

resource endpoint 'Microsoft.KeyVault/vaults/secrets@2022-07-01' = {
  parent: kv
  name: keyName
  properties: {
    value: keyValue
    contentType: contentType
  }
}

Confirm

microsoft-github-policy-service[bot] commented 7 months ago

Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @RandalliLama, @schaabs, @jlichwa. Please see https://aka.ms/biceptypesinfo for troubleshooting help.