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
Add a `tags:` section to azure.yaml that allows users to specify
custom Azure resource tags. Tags are merged with the default
azd-env-name tag and passed to Bicep provisioning.
Fixes#4479
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: schemas/v1.0/azure.yaml.json
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,14 @@
35
35
}
36
36
}
37
37
},
38
+
"tags": {
39
+
"type": "object",
40
+
"title": "Custom Azure resource tags",
41
+
"description": "Optional. Custom Azure resource tags to apply to deployments. These tags are merged with the default azd tags (e.g. azd-env-name). Built-in azd tags take precedence and cannot be overridden.",
42
+
"additionalProperties": {
43
+
"type": "string"
44
+
}
45
+
},
38
46
"infra": {
39
47
"type": "object",
40
48
"title": "The infrastructure configuration used for the application",
0 commit comments