Azure / bicep-types-az

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

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

Open azMantas opened 4 months ago

azMantas commented 4 months ago

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

MatthewSteeples commented 3 months ago

Duplicate of #2162