Files

33 lines
684 B
Terraform
Raw Permalink Normal View History

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