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 0276045 commit 7606a63Copy full SHA for 7606a63
Deployment/main.bicep
@@ -23,6 +23,15 @@ var resourceGroupLocation = resourceGroup().location
23
// Load the abbrevations file required to name the azure resources.
24
var abbrs = loadJsonContent('./abbreviations.json')
25
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
+}
35
36
// Create a storage account
37
module gs_storageaccount 'bicep/azurestorageaccount.bicep' = {
0 commit comments