Skip to content

Commit

Permalink
Adding DeploymentType tag to resources (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
lisamurphy-msft committed Oct 5, 2021
1 parent 2671ae9 commit 9ab803c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bicep/mlz.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ param hubSubscriptionId string = subscription().subscriptionId
param identitySubscriptionId string = hubSubscriptionId
param operationsSubscriptionId string = hubSubscriptionId
param sharedServicesSubscriptionId string = hubSubscriptionId

@allowed([
'Standard'
'Premium'
Expand Down Expand Up @@ -543,6 +542,7 @@ param windowsVmStorageAccountType string = 'StandardSSD_LRS'

param tags object = {
'resourcePrefix': resourcePrefix
'DeploymentType': 'MissionLandingZoneARM'
}

param uniqueId string = uniqueString(deployment().name)
Expand Down
5 changes: 3 additions & 2 deletions src/bicep/mlz.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.613.9944",
"templateHash": "10197699490604004243"
"templateHash": "927222700136740996"
}
},
"parameters": {
Expand Down Expand Up @@ -503,7 +503,8 @@
"tags": {
"type": "object",
"defaultValue": {
"resourcePrefix": "[parameters('resourcePrefix')]"
"resourcePrefix": "[parameters('resourcePrefix')]",
"DeploymentType": "MissionLandingZoneARM"
}
},
"uniqueId": {
Expand Down

0 comments on commit 9ab803c

Please sign in to comment.