Skip to content

Commit 2ecb49c

Browse files
committed
fix: use agency card as prefix for key vault name
this will rename MST's key vault
1 parent 81976d1 commit 2ecb49c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraform/key_vault.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resource "azurerm_key_vault" "main" {
22
# name needs to be globally unique
3-
name = "eligibility-server-${local.env_name}"
3+
name = "${var.AGENCY_CARD}-${local.env_name}"
44
location = data.azurerm_resource_group.main.location
55
resource_group_name = data.azurerm_resource_group.main.name
66
sku_name = "standard"

0 commit comments

Comments
 (0)