encore x6

This commit is contained in:
aissi
2025-12-03 17:06:12 +01:00
parent bca5736344
commit c9c7853792
2 changed files with 5 additions and 5 deletions

View File

@@ -47,8 +47,8 @@ resource "google_compute_firewall" "allow-http" {
}
# - SSH vers toutes les instances
resource "google_compute_firewall" "SSH" {
name = "SSH"
resource "google_compute_firewall" "ssh_for_all" {
name = "ssh_for_all"
network = google_compute_network.vpc.id
allow {

View File

@@ -4,8 +4,8 @@ output "vpc_terraform_output" {
output "list_id" {
value = {
frontend = google_compute_subnetwork.subnet_frontend.id
backend = google_compute_subnetwork.subnet_backend.id
database = google_compute_subnetwork.subnet_database.id
frontend = google_compute_network.vpc.id
backend = google_compute_network.vpc.id
database = google_compute_network.vpc.id
}
}