encore encore

This commit is contained in:
aissi
2025-12-03 16:54:32 +01:00
parent b1d2989ef8
commit af30a84d14

View File

@@ -48,7 +48,7 @@ resource "google_compute_firewall" "allow-http" {
# - SSH vers toutes les instances
resource "google_compute_firewall" "SSH" {
name = "SSH"
name = "google_compute_firewall"
network = google_compute_network.vpc.id
allow {
@@ -61,7 +61,7 @@ resource "google_compute_firewall" "SSH" {
# - Port 8000 de frontend vers backend
resource "google_compute_firewall" "front-back" {
name = "front-back"
name = "google_compute_firewall"
network = google_compute_network.vpc.id
allow {
@@ -75,7 +75,7 @@ resource "google_compute_firewall" "front-back" {
# - Port 3306 de backend vers database
resource "google_compute_firewall" "back-base" {
name = "back-base"
name = "google_compute_firewall"
network = google_compute_network.vpc.id
allow {