diff --git a/blueprints/networking/psc-glb-and-armor/consumer.tf b/blueprints/networking/psc-glb-and-armor/consumer.tf index f21b28681b..c8251b70e3 100644 --- a/blueprints/networking/psc-glb-and-armor/consumer.tf +++ b/blueprints/networking/psc-glb-and-armor/consumer.tf @@ -34,6 +34,7 @@ module "producer-a" { prefix = var.prefix producer_project_id = var.producer_a_project_id project_create_config = var.project_create_config + region = var.region } module "producer-b" { @@ -42,6 +43,7 @@ module "producer-b" { prefix = var.prefix producer_project_id = var.producer_b_project_id project_create_config = var.project_create_config + region = var.region } module "consumer-vpc" { diff --git a/blueprints/networking/psc-glb-and-armor/modules/producer/variables.tf b/blueprints/networking/psc-glb-and-armor/modules/producer/variables.tf index 356b670641..571c307ea6 100644 --- a/blueprints/networking/psc-glb-and-armor/modules/producer/variables.tf +++ b/blueprints/networking/psc-glb-and-armor/modules/producer/variables.tf @@ -45,5 +45,4 @@ variable "project_create_config" { variable "region" { description = "The GCP region in which the resources should be deployed." type = string - default = "europe-west1" }