pb providers

This commit is contained in:
vaisse
2025-12-04 08:17:10 +00:00
parent e67b5bf03c
commit 33698ed400
15 changed files with 507 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
variable "frontend_cidr" {
description = "CIDR for frontend subnet"
type = string
}
variable "backend_cidr" {
description = "CIDR for backend subnet"
type = string
}
variable "database_cidr" {
description = "CIDR for database subnet"
type = string
}
variable "project_name"{
description = "name of the project"
type = string
}
variable "region"{
description = "region of the project"
type = string
}