From 7a4925cc7b739165e0e9375ce8ce366587d2bedc Mon Sep 17 00:00:00 2001 From: genique <florian.genique@etu.u-pec.fr> Date: Fri, 6 Dec 2024 15:12:04 +0100 Subject: [PATCH] t --- environments/dev/main.tf | 9 +-------- modules/compute/variables.tf | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/environments/dev/main.tf b/environments/dev/main.tf index 0384016..79d4e5f 100644 --- a/environments/dev/main.tf +++ b/environments/dev/main.tf @@ -38,13 +38,6 @@ module "iam" { module "compute" { source = "../../modules/compute" - # Variables d'entrée - instance-type = "e2-micro" - zone = "europe-west4-a" - - # Autres variables spécifiques au module - frontend_subnet_id = module.network.id_subnetwork["frontend"] - backend_subnet_id = module.network.id_subnetwork["backend"] - database_subnet_id = module.network.id_subnetwork["databse"] + } \ No newline at end of file diff --git a/modules/compute/variables.tf b/modules/compute/variables.tf index dc3c944..6aa61f6 100644 --- a/modules/compute/variables.tf +++ b/modules/compute/variables.tf @@ -1,7 +1,7 @@ variable "instance_type" { description = "type d'instance" type = string - default = "e2-micro" + default = "" } variable "zone" {