Skip to content
Merged
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
11 changes: 11 additions & 0 deletions Deployment/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ var resourceGroupLocation = resourceGroup().location
// Load the abbrevations file required to name the azure resources.
var abbrs = loadJsonContent('./abbreviations.json')

var deployerInfo = deployer()

resource resourceGroupTags 'Microsoft.Resources/tags@2021-04-01' = {
name: 'default'
properties: {
tags: {
TemplateName: 'DKM'
CreatedBy: split(deployerInfo.userPrincipalName, '@')[0]
}
}
}

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