We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8721a32 commit d940bb1Copy full SHA for d940bb1
1 file changed
infra/main.bicep
@@ -136,7 +136,8 @@ var abbrs = loadJsonContent('./abbreviations.json')
136
137
@description('Optional created by user name')
138
param createdBy string = empty(deployer().userPrincipalName) ? '' : split(deployer().userPrincipalName, '@')[0]
139
-
+@description('Deployment UTC timestamp')
140
+param createdDate string ='yyyy-MM-ddTHH:mm:ssZ'
141
// ========== Resource Group Tag ========== //
142
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
143
name: 'default'
@@ -145,6 +146,7 @@ resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
145
146
...allTags
147
TemplateName: 'Code Modernization'
148
CreatedBy: createdBy
149
+ CreatedDate:createdDate
150
}
151
152
0 commit comments