Skip to content

Commit aaeb0ae

Browse files
committed
fix(production-ready-azure): include suffix in storage module Name tag
1 parent 7fb697b commit aaeb0ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • terraform-tutorial/terraform-production-ready-azure/assets/stage/step3/modules/storage

terraform-tutorial/terraform-production-ready-azure/assets/stage/step3/modules/storage/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resource "azurerm_storage_account" "static" {
1919
}
2020

2121
tags = {
22-
Name = "${var.app_name}-${var.environment}-static"
22+
Name = "${var.app_name}-${var.suffix}-${var.environment}-static"
2323
}
2424
}
2525

@@ -41,7 +41,7 @@ resource "azurerm_storage_account" "backups" {
4141
}
4242

4343
tags = {
44-
Name = "${var.app_name}-${var.environment}-backups"
44+
Name = "${var.app_name}-${var.suffix}-${var.environment}-backups"
4545
}
4646
}
4747

0 commit comments

Comments
 (0)