Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Deployment/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ var resourceGroupLocation = resourceGroup().location
// Load the abbrevations file required to name the azure resources.
var abbrs = loadJsonContent('./abbreviations.json')

// ========== Resource Group Tag ========== //
resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
name: 'default'
properties: {
tags: {
templateName: 'DKM'
}
}
}

// Create a storage account
module gs_storageaccount 'bicep/azurestorageaccount.bicep' = {
Expand Down