We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191a726 commit 1a5c498Copy full SHA for 1a5c498
infra/main.bicep
@@ -134,13 +134,16 @@ var modelDeployment = {
134
135
var abbrs = loadJsonContent('./abbreviations.json')
136
137
+var deployerInfo = deployer()
138
+
139
// ========== Resource Group Tag ========== //
140
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
141
name: 'default'
142
properties: {
143
tags: {
144
...allTags
145
TemplateName: 'Code Modernization'
146
+ CreatedBy: split(deployerInfo.userPrincipalName, '@')[0]
147
}
148
149
0 commit comments