corrs vars

This commit is contained in:
vaisse
2025-12-04 09:39:33 +01:00
parent 33698ed400
commit d2a8c31ab8
3 changed files with 15 additions and 4 deletions

View File

@@ -19,5 +19,4 @@ module "network" {
frontend_cidr = var.frontend_cidr
backend_cidr = var.backend_cidr
database_cidr = var.database_cidr
ssh_source_ranges = var.ssh_source_ranges
}

View File

@@ -27,3 +27,15 @@ variable "region"{
type = string
default = "10.0.5.0/24"
}
variable "project_id"{
description = "id of the project"
type = "string"
default = "10.0.6.0/24"
}
variable "ssh_source_ranges"{
description = "range of sources"
type = "string"
default = "10.0.7.0/24"
}