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.
2 parents 276d77b + 9c8b69b commit beb9497Copy full SHA for beb9497
infra/main.bicep
@@ -105,13 +105,15 @@ var solutionSuffix = toLower(trim(replace(
105
@description('Optional. The tags to apply to all deployed Azure resources.')
106
param tags resourceInput<'Microsoft.Resources/resourceGroups@2025-04-01'>.tags = {}
107
108
+var deployerInfo = deployer()
109
// ========== Resource Group Tag ========== //
110
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
111
name: 'default'
112
properties: {
113
tags: {
114
... tags
115
TemplateName: 'Docgen'
116
+ CreatedBy: split(deployerInfo.userPrincipalName, '@')[0]
117
}
118
119
0 commit comments