WIP: fix compute and network terraform plan

This commit is contained in:
2025-12-04 10:04:02 +01:00
parent 9fded5a305
commit 2311bc42ad
2 changed files with 6 additions and 6 deletions

View File

@@ -15,8 +15,8 @@ provider "google" {
module "network" {
source = "../../modules/network"
project_id = var.project_id
project_name = var.project_name
project_id = var.project_id
region = var.region
frontend_cidr = var.frontend_cidr
backend_cidr = var.backend_cidr
@@ -24,6 +24,6 @@ module "network" {
ssh_source_ranges = var.ssh_source_ranges
providers = {
google = google
google = google
}
}