1
0
forked from pierront/but3-iac
Files

30 lines
598 B
Terraform
Raw Permalink Normal View History

2025-12-03 16:33:17 +01:00
variable "project_name" {
2025-12-04 10:46:51 +01:00
description = "Nom du projet / préfixe des ressources réseau"
2025-12-03 16:33:17 +01:00
type = string
}
variable "region" {
2025-12-04 10:46:51 +01:00
description = "Région GCP"
2025-12-03 16:33:17 +01:00
type = string
}
variable "frontend_cidr" {
2025-12-04 10:46:51 +01:00
description = "CIDR pour le subnet frontend"
2025-12-03 16:33:17 +01:00
type = string
}
variable "backend_cidr" {
2025-12-04 10:46:51 +01:00
description = "CIDR pour le subnet backend"
2025-12-03 16:33:17 +01:00
type = string
}
variable "database_cidr" {
2025-12-04 10:46:51 +01:00
description = "CIDR pour le subnet database"
2025-12-03 16:33:17 +01:00
type = string
}
variable "ssh_source_ranges" {
2025-12-04 10:46:51 +01:00
description = "Plage IP autorisée pour le SSH"
2025-12-03 16:33:17 +01:00
type = string
}