Files
but3-iac/tp-cloud/terraform/modules/network/variables.tf

33 lines
684 B
HCL

variable "project_name" {
description = "Nom du projet utilisé pour préfixer les ressources"
type = string
}
variable "project_id" {
type = string
}
variable "region" {
description = "Région GCP où seront créés les sous-réseaux"
type = string
}
variable "frontend_cidr" {
description = "CIDR du sous-réseau frontend"
type = string
}
variable "backend_cidr" {
description = "CIDR du sous-réseau backend"
type = string
}
variable "database_cidr" {
description = "CIDR du sous-réseau database"
type = string
}
variable "ssh_source_ranges" {
description = "Plages IP autorisées pour SSH"
type = string
}