From c7381c3d66ef8fe724b3bfc99d61ff0c06b937f9 Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Fri, 18 Dec 2020 15:53:38 -0500 Subject: [PATCH] chore(tf): rename url_map due to upstream bugs, attempt to not modify it --- terraform/weblb.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/weblb.tf b/terraform/weblb.tf index ffa832e..391e38c 100644 --- a/terraform/weblb.tf +++ b/terraform/weblb.tf @@ -4,11 +4,11 @@ resource "google_compute_url_map" "web_lb" { host_rule { hosts = var.ui_hostnames - path_matcher = "web" + path_matcher = "path-matcher-1" // Matching google console due to bug with mutating url_maps } path_matcher { - name = "web" + name = "path-matcher-1" default_service = google_compute_backend_service.web_lb.id }