From 73d2fa78ea386d2533143829a3368139be7cab06 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sat, 5 Jul 2025 10:01:21 +0200 Subject: [PATCH] Actualiser variables.tf --- variables.tf | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/variables.tf b/variables.tf index 0f806ed..a8d87dc 100644 --- a/variables.tf +++ b/variables.tf @@ -3,15 +3,16 @@ variable "cloudflare_email" { type = string sensitive = true default = "thedjinhn@gmail.com" - #${{ secrets.EMAIL }} - #"thedjinhn@gmail.com" + # ${{ secrets.EMAIL }} + # "thedjinhn@gmail.com" } variable "cloudflare_zone_id" { description = "La zone DNS à laquelle ajouter l'enregistrement." type = string sensitive = true - default = "${{ secrets.ZONE_ID }}" + default = "a5eb1b667ba2fde356ecf6707d0dd309" + # ${{ secrets.ZONE_ID }} #"a5eb1b667ba2fde356ecf6707d0dd309" } @@ -26,8 +27,9 @@ variable "vault_url" { description = "URL du serveur Vault" type = string sensitive = true - default = ${{ secrets.VAULT_URL }} - #https://vault.tips-of-mine.com + default = "https://vault.tips-of-mine.com" + # ${{ secrets.VAULT_URL }} + # "https://vault.tips-of-mine.com" } variable "vault_token" {