pb references

This commit is contained in:
vaisse
2025-12-04 09:04:03 +00:00
parent d6bec27c40
commit b22f251702
3 changed files with 27 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ resource "frontend" "subnet" {
network = google_compute_network.vpc.id
ip_cidr_range = "10.0.1.0/24"
region = "europe-west9"
provider = "registry.terraform.io/hashicorp/frontend"
provider = google
allow {
protocol = ssh
@@ -24,7 +24,7 @@ resource "backend" "subnet" {
network = google_compute_network.vpc.id
ip_cidr_range = "10.0.2.0/24"
region = "europe-west9"
provider = "registry.terraform.io/hashicorp/backend"
provider = google
allow {
protocol = ssh
@@ -41,5 +41,5 @@ resource "database" "subnet" {
network = google_compute_network.vpc.id
ip_cidr_range = "10.0.3.0/24"
region = "europe-west9"
provider = "registry.terraform.io/hashicorp/database"
provider = google
}