WIP: fix compute and network terraform plan

This commit is contained in:
2025-12-04 10:09:20 +01:00
parent 2311bc42ad
commit 14f4e37a02
2 changed files with 3 additions and 7 deletions

View File

@@ -22,8 +22,4 @@ module "network" {
backend_cidr = var.backend_cidr
database_cidr = var.database_cidr
ssh_source_ranges = var.ssh_source_ranges
providers = {
google = google
}
}

View File

@@ -1,16 +1,16 @@
variable "project_id" {
type = string
default = "my-project"
default = "first-project-478713"
}
variable "project_name" {
type = string
default = "dev"
default = "First project"
}
variable "region" {
type = string
default = "europe-west1"
default = "europe-west9"
}
variable "frontend_cidr" {