diff --git a/variables.tf b/variables.tf index e69de29..2ec4469 100644 --- a/variables.tf +++ b/variables.tf @@ -0,0 +1,49 @@ +variable "cloudflare_email" { + description = "L'adresse électronique associée au compte." + type = string + sensitive = true + default = "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 = "a5eb1b667ba2fde356ecf6707d0dd309" + # ${{ secrets.ZONE_ID }} + #"a5eb1b667ba2fde356ecf6707d0dd309" +} + +variable "ip_server_a" { + description = "Le serveur principal" + type = string + sensitive = true + default = "82.66.77.254" +} + +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