Files
but3-iac/terraform/environments/dev/variables.tf

59 lines
1.1 KiB
Terraform
Raw Normal View History

2025-12-04 11:05:37 +01:00
# variable "project_id" {
# description = "ID du projet GCP"
# type = string
# default = "mon-projet"
# }
2025-12-04 10:15:36 +01:00
2025-12-03 17:10:48 +01:00
variable "project_name" {
2025-12-04 10:15:36 +01:00
description = "Nom du projet"
2025-12-03 17:10:48 +01:00
type = string
2025-12-04 10:15:36 +01:00
default = "My First Project"
2025-12-03 17:10:48 +01:00
}
variable "region" {
2025-12-04 10:15:36 +01:00
description = "Region du projet"
2025-12-03 17:10:48 +01:00
type = string
default = "europe-west9"
}
variable "frontend_cidr" {
description = "CIDR for frontend subnet"
type = string
default = "10.0.1.0/24"
}
variable "backend_cidr" {
description = "CIDR for backend subnet"
type = string
default = "10.0.2.0/24"
}
variable "database_cidr" {
description = "CIDR for database subnet"
type = string
default = "10.0.3.0/24"
}
variable "ssh_source_ranges" {
2025-12-04 10:15:36 +01:00
description = ""
2025-12-03 17:10:48 +01:00
type = string
2025-12-04 10:15:36 +01:00
default = "0.0.0.0/0"
2025-12-04 09:59:27 +01:00
}
2025-12-04 10:15:36 +01:00
variable "project_id" {
description = "ID du projet"
type = string
default = "plenary-plane-478713-q1"
}
2025-12-04 09:59:27 +01:00
2025-12-04 10:15:36 +01:00
variable "instance_type" {
description = "type de l'instance"
type = string
default = "e2-small"
}
2025-12-04 09:59:27 +01:00
2025-12-04 10:15:36 +01:00
variable "zone" {
description = "Nom de la zone"
type = string
default = "europe-west9-b"
2025-12-04 10:03:07 +01:00
}