From a6b186e4c7d519ad6469a7680bd2807d2411592f Mon Sep 17 00:00:00 2001 From: Christopher Goodwin Date: Thu, 9 Jan 2025 15:28:17 -0800 Subject: [PATCH 1/2] bugfix/bdev-437/bssrf --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index 584c20a..62fa204 100644 --- a/main.tf +++ b/main.tf @@ -57,6 +57,7 @@ module "buckets" { source = "github.com/brandlive1941/terraform-module-backend-bucket?ref=v1.1.0" project_id = var.project_id name = each.value["name"] + environment = each.value["environment"] location = each.value["location"] service_name = each.value["service_name"] enable_cdn = each.value.backend["enable_cdn"] From 633182d394b1166036bada293e33baaec1e92611 Mon Sep 17 00:00:00 2001 From: Christopher Goodwin Date: Thu, 23 Jan 2025 16:21:17 -0800 Subject: [PATCH 2/2] formatting --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 62fa204..d225e30 100644 --- a/main.tf +++ b/main.tf @@ -155,5 +155,5 @@ resource "google_compute_url_map" "urlmap" { } } } - depends_on = [ module.buckets, module.lb.backend_services ] + depends_on = [module.buckets, module.lb.backend_services] }