You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bicep version
Bicep CLI version 0.4.1124 (66c84c8)
Describe the bug
To deploy Microsoft.Automation/automationAccounts/configurations a number of properties are required including location, even though it is a read only property. Bicep does not support the property however in ARM this is a property and during deployment this is expected.
Bicep version
Bicep CLI version 0.4.1124 (66c84c8)
Describe the bug
To deploy Microsoft.Automation/automationAccounts/configurations a number of properties are required including location, even though it is a read only property. Bicep does not support the property however in ARM this is a property and during deployment this is expected.
Example code:
resource automationAccountsConfiguration 'Microsoft.Automation/automationAccounts/configurations@2019-06-01' = { parent: automationAccounts name: 'ExampleDSCConfiguration' }
Error on the portal:
{ "status": "Failed", "error": { "code": "LocationRequired", "message": "The location property is required for this definition." } }
To Reproduce
Deploy the below code using Bicep:
The text was updated successfully, but these errors were encountered: