TP_Cloud/terraform/environments/dev/variables.tf

53 lines
1.0 KiB
Terraform
Raw Normal View History

2024-12-04 16:11:44 +01:00
# - project_name (string)
variable "project_name" {
description = "nom du projet"
type = string
default = "TP_IUT"
}
2024-12-04 16:23:28 +01:00
variable "project_id" {
description = "id du projet"
type = string
default = "iut-upec"
}
2024-12-04 16:11:44 +01:00
# - region (string)
variable "region" {
description = "region du projet"
type = string
2024-12-04 17:26:20 +01:00
default = "europe-west1"
2024-12-04 16:11:44 +01:00
}
# - frontend_cidr (string)
variable "frontend_cidr" {
description = "cidr du frontend"
type = string
default = "10.0.1.0/24"
}
# - backend_cidr (string)
variable "backend_cidr" {
description = "cidr du backend"
type = string
default = "10.0.2.0/24"
}
# - database_cidr (string)
variable "database_cidr" {
description = "cidr de la database"
type = string
default = "10.0.3.0/24"
}
# - ssh_source_ranges (string)
variable "ssh_source_ranges" {
description = "acces internet"
type = string
default = "0.0.0.0/0"
}
variable "cidr_range" {
description = "cidr de network"
type = string
default = "10.0.0.0/16"
}