From 7606a63d30f2d90582a0650667add70a448184c2 Mon Sep 17 00:00:00 2001 From: Ragini-Microsoft Date: Fri, 11 Jul 2025 15:24:13 +0530 Subject: [PATCH] Added templateName tag on rg --- Deployment/main.bicep | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Deployment/main.bicep b/Deployment/main.bicep index a7edfdb6..95eb0d78 100644 --- a/Deployment/main.bicep +++ b/Deployment/main.bicep @@ -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' = {