Actualiser tp-cloud/terraform/modules/network/variables.tf

This commit is contained in:
Yanis DARIUS 2024-12-06 15:00:16 +01:00
parent d3be5f0031
commit 36c89d3edc

View File

@ -1,35 +1,35 @@
variable "project_name" { variable "project_name" {
description = "ID du projet GCP" description = "Nom du projet"
type = string type = string
} }
variable "region" { variable "region" {
description = "region du projet" description = "gion du projet"
type = string type = string
} }
variable "frontend_cidr" { variable "frontend_cidr" {
description = "frontend" description = "cidr du frontend"
type = string type = string
} }
variable "backend_cidr" { variable "backend_cidr" {
description = "backend" description = "cidr du backend"
type = string type = string
} }
variable "database_cidr" { variable "database_cidr" {
description = "database" description = "cidr du database"
type = string type = string
} }
variable "ssh_source_ranges" { variable "ssh_source_ranges" {
description = "acces par ssh" description = "Accès à internet"
type = string type = string
} }
variable "cidr_range" { variable "cidr_range" {
description = "cidr-network" description = "cidr de network"
type = string type = string
} }