From 82b42c0006e0059c87e19172a43b1da96db572d7 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Wed, 6 Aug 2025 11:51:02 +0200 Subject: [PATCH] Actualiser variables.tf --- variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index 7ce1b70..98b290f 100644 --- a/variables.tf +++ b/variables.tf @@ -2,7 +2,7 @@ variable "vault_url" { description = "URL du serveur Vault" type = string sensitive = true - default = "" + default = "https://vault.tips-of-mine.com" # ${{ secrets.VAULT_URL }} # "https://vault.tips-of-mine.com" } @@ -11,14 +11,14 @@ variable "vault_token" { description = "Token d'acces" type = string sensitive = true - default = "" + default = "hvs.BUXBydP1Iy6leqNIo2wx478p" # ${{ secrets.VAULT_TOKEN }} # "hvs.BUXBydP1Iy6leqNIo2wx478p" } variable "aws_region" { description = "Region AWS" - type = string + type = string sensitive = true - default = "eu-north-1" + default = "eu-north-1" } \ No newline at end of file