Skip to content

Commit 7606a63

Browse files
Added templateName tag on rg
1 parent 0276045 commit 7606a63

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Deployment/main.bicep

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ var resourceGroupLocation = resourceGroup().location
2323
// Load the abbrevations file required to name the azure resources.
2424
var abbrs = loadJsonContent('./abbreviations.json')
2525

26+
// ========== Resource Group Tag ========== //
27+
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
28+
name: 'default'
29+
properties: {
30+
tags: {
31+
templateName: 'DKM'
32+
}
33+
}
34+
}
2635

2736
// Create a storage account
2837
module gs_storageaccount 'bicep/azurestorageaccount.bicep' = {

0 commit comments

Comments
 (0)