AzOps icon indicating copy to clipboard operation
AzOps copied to clipboard

Parent resource name missing in the name property of exported resources

Open Poekiee12 opened this issue 2 years ago • 4 comments

Describe the bug When exporting a resource through AzOps, the template validation fails because the name of the parent resource is not included in the name property.

This bug applies to the following types:

"type": "Microsoft.Network/privateDnsZones/virtualNetworkLinks", "type": "Microsoft.Sql/servers/databases", "type": "Microsoft.Cdn/profiles/endpoints", "type": "Microsoft.Network/dnsResolvers/inboundEndpoints",

Wrong JSON

"type": "Microsoft.Sql/servers/databases",
"name": "databasename",

Correct JSON

"type": "Microsoft.Sql/servers/databases",
"name": "sqlservername/databasename",

Steps to reproduce

  1. Pull Azure environment with AzOps
  2. Validate pulled resource templates
  3. Error appears in the name property of the JSON file

Screenshots image image

Poekiee12 avatar Jan 13 '23 08:01 Poekiee12