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 1ee2c16 commit f52a90aCopy full SHA for f52a90a
Deployment/main.bicep
@@ -23,6 +23,17 @@ var resourceGroupLocation = resourceGroup().location
23
// Load the abbrevations file required to name the azure resources.
24
var abbrs = loadJsonContent('./abbreviations.json')
25
26
+var deployerInfo = deployer()
27
+
28
+resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
29
+ name: 'default'
30
+ properties: {
31
+ tags: {
32
+ TemplateName: 'DKM'
33
+ CreatedBy: split(deployerInfo.userPrincipalName, '@')[0]
34
+ }
35
36
+}
37
38
// Create a storage account
39
module gs_storageaccount 'bicep/azurestorageaccount.bicep' = {
0 commit comments