From 36c89d3edca46616b250fcba3ce5dc1fe6744841 Mon Sep 17 00:00:00 2001 From: Yanis DARIUS Date: Fri, 6 Dec 2024 15:00:16 +0100 Subject: [PATCH] Actualiser tp-cloud/terraform/modules/network/variables.tf --- .../terraform/modules/network/variables.tf | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tp-cloud/terraform/modules/network/variables.tf b/tp-cloud/terraform/modules/network/variables.tf index a272e2c..7d5fe2c 100644 --- a/tp-cloud/terraform/modules/network/variables.tf +++ b/tp-cloud/terraform/modules/network/variables.tf @@ -1,35 +1,35 @@ + variable "project_name" { - description = "ID du projet GCP" + description = "Nom du projet" type = string } variable "region" { - description = "region du projet" + description = "Région du projet" type = string } - variable "frontend_cidr" { - description = "frontend" + description = "cidr du frontend" type = string } variable "backend_cidr" { - description = "backend" + description = "cidr du backend" type = string } variable "database_cidr" { - description = "database" + description = "cidr du database" type = string } variable "ssh_source_ranges" { - description = "acces par ssh" + description = "Accès à internet" type = string } variable "cidr_range" { - description = "cidr-network" + description = "cidr de network" type = string -} +} \ No newline at end of file