From 654ea7c2b13fda2a5dabd26bc91ede30f29705cd Mon Sep 17 00:00:00 2001 From: Vladislav Nikolov Date: Thu, 26 Sep 2024 16:28:44 +0300 Subject: [PATCH] Fix constant Firewall object name The Firewall object's name was constant, causing deployment conflicts when attempting to deploy the same offer multiple times. --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 4ead709..9a3a121 100644 --- a/main.tf +++ b/main.tf @@ -28,7 +28,7 @@ resource "google_compute_instance" "graphdb" { } resource "google_compute_firewall" "rules" { - name = "graphdb-allow-ingress" + name = "${var.goog_cm_deployment_name}-graphdb-allow-ingress" network = var.network_interface description = "Allow inbound access to GraphDB"