Azure/bicep-types-az

Microsoft.App/managedEnvironments: "identity" does not exist...

Opened this issue · 1 comments

Resource Type

Microsoft.App/managedEnvironments

Api Version

2024-03-01

Issue Type

Inaccurate property type(s)

Other Notes

identity type is missing at the newest api version.

image

Bicep Repro

resource foo 'Microsoft.App/managedEnvironments@2024-03-01' = {
  name: 'name'
  location: 'westeurope'
  identity: {
    type: 'SystemAssigned'
  }
}

Confirm

  • I have read the troubleshooting guide and looked for duplicates.

Duplicate of #2162