From 60b4a13dc2c876dfd23d456d72a0065b8197bd0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wiktor=20Niesiob=C4=99dzki?= Date: Thu, 15 Feb 2024 07:06:59 +0000 Subject: [PATCH] Fix missing region --- blueprints/networking/psc-glb-and-armor/consumer.tf | 2 ++ .../networking/psc-glb-and-armor/modules/producer/variables.tf | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/blueprints/networking/psc-glb-and-armor/consumer.tf b/blueprints/networking/psc-glb-and-armor/consumer.tf index 39eb65370a..a52d9cd790 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" }