From 68542e61dac52c86a6b459533d4266c5d8bbb729 Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Tue, 5 Aug 2025 13:43:55 +0200 Subject: [PATCH] Actualiser variables.tf --- variables.tf | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/variables.tf b/variables.tf index e69de29..5b35469 100644 --- a/variables.tf +++ b/variables.tf @@ -0,0 +1,24 @@ +variable "vault_url" { + description = "URL du serveur Vault" + type = string + sensitive = true + default = "https://vault.tips-of-mine.com" + # ${{ secrets.VAULT_URL }} + # "https://vault.tips-of-mine.com" +} + +variable "vault_token" { + description = "Token d'acces" + type = string + sensitive = true + default = "hvs.BUXBydP1Iy6leqNIo2wx478p" + # ${{ secrets.VAULT_TOKEN }} + # "hvs.BUXBydP1Iy6leqNIo2wx478p" +} + +variable "cloudflare_api_token" { + description = "my cloudflare api token here" + type = string + sensitive = true + default = "" +} \ No newline at end of file