This commit is contained in:
2025-12-03 16:57:53 +01:00
parent bce256fe2b
commit 61860ed31b

View File

@@ -66,7 +66,7 @@ resource "google_compute_firewall" "front_back" {
ports = ["8000"]
}
source_ranges = ["frontend"]
source_tags = ["frontend"]
target_tags = ["backend"]
}
@@ -79,7 +79,7 @@ resource "google_compute_firewall" "back_data" {
ports = ["3306"]
}
source_ranges = ["backend"]
source_tags = ["backend"]
target_tags = ["database"]
}