Skip to content

Commit

Permalink
Fix for Terraform issue in which the tier 2 subscription parameter is…
Browse files Browse the repository at this point in the history
… ignored (#638)
  • Loading branch information
brooke-hamilton authored Feb 9, 2022
1 parent 5ad0261 commit 7d6b27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/terraform/mlz/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ provider "azurerm" {
alias = "tier2"
environment = var.environment
metadata_host = var.metadata_host
subscription_id = coalesce(var.hub_subid, var.tier2_subid)
subscription_id = coalesce(var.tier2_subid, var.hub_subid)

features {
log_analytics_workspace {
Expand Down

0 comments on commit 7d6b27f

Please sign in to comment.