From 0049ccd0b07553f569cc2ca23c25fdd929146fa7 Mon Sep 17 00:00:00 2001 From: Darius Date: Wed, 4 Dec 2024 16:20:32 +0100 Subject: [PATCH] fix --- .../terraform/modules/network/variables.tf | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/tp-cloud/terraform/modules/network/variables.tf b/tp-cloud/terraform/modules/network/variables.tf index e69de29..a272e2c 100644 --- a/tp-cloud/terraform/modules/network/variables.tf +++ b/tp-cloud/terraform/modules/network/variables.tf @@ -0,0 +1,35 @@ +variable "project_name" { + description = "ID du projet GCP" + type = string +} + +variable "region" { + description = "region du projet" + type = string +} + + +variable "frontend_cidr" { + description = "frontend" + type = string +} + +variable "backend_cidr" { + description = "backend" + type = string +} + +variable "database_cidr" { + description = "database" + type = string +} + +variable "ssh_source_ranges" { + description = "acces par ssh" + type = string +} + +variable "cidr_range" { + description = "cidr-network" + type = string +}