fix: potential fix on plan firewall

This commit is contained in:
2025-12-04 10:13:06 +01:00
parent 3c74853b94
commit 5697b71dbe

View File

@@ -54,7 +54,7 @@ resource "google_compute_firewall" "allow_ssh" {
}
resource "google_compute_firewall" "allow_frontend_to_backend" {
name = "${var.project_name}-allow-frontend-to-backend"
name = "test-terraform-allow-frontend-to-backend"
network = google_compute_network.vpc.id
allow {
@@ -67,7 +67,7 @@ resource "google_compute_firewall" "allow_frontend_to_backend" {
}
resource "google_compute_firewall" "allow_backend_to_database" {
name = "${var.project_name}-allow-backend-to-database"
name = "test-terraform-allow-backend-to-database"
network = google_compute_network.vpc.id
allow {