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

30 lines
526 B
Terraform
Raw Normal View History

2025-12-04 11:16:29 +01:00
2025-12-04 10:07:08 +00:00
variable "project_name" {
2025-12-04 11:16:29 +01:00
description = "Nom du projet"
2025-12-04 10:07:08 +00:00
type = string
}
variable "region" {
2025-12-04 11:16:29 +01:00
description = "Region du projet"
2025-12-04 10:07:08 +00:00
type = string
}
variable "frontend_cidr" {
2025-12-04 11:16:29 +01:00
description = "CIDR for frontend subnet"
2025-12-04 10:07:08 +00:00
type = string
}
variable "backend_cidr" {
2025-12-04 11:16:29 +01:00
description = "CIDR for backend subnet"
2025-12-04 10:07:08 +00:00
type = string
}
variable "database_cidr" {
2025-12-04 11:16:29 +01:00
description = "CIDR for database subnet"
2025-12-04 10:07:08 +00:00
type = string
}
variable "ssh_source_ranges" {
2025-12-04 11:16:29 +01:00
description = ""
2025-12-04 10:07:08 +00:00
type = string
2025-12-04 11:16:29 +01:00
}