Files
terraform-cloudflare-dns-zo…/variables.tf
Hubert Cornet 0be32b1e66
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s
Actualiser variables.tf
2025-07-05 09:25:20 +02:00

45 lines
1.0 KiB
HCL

variable "cloudflare_email" {
description = "L'adresse électronique associée au compte."
type = string
sensitive = true
default = ${{ 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 }}
#a5eb1b667ba2fde356ecf6707d0dd309
}
variable "ip_server_a" {
description = "Le serveur principal"
type = string
sensitive = true
default = "10.0.4.50"
}
variable "vault_url" {
description = "URL du serveur Vault"
type = string
sensitive = true
default = ${{ secrets.VAULT_URL }}
#https://vault.tips-of-mine.com
}
variable "vault_token" {
description = "Token d'acces"
type = string
sensitive = true
default = ${{ secrets.VAULT_TOKEN }}
#hvs.BUXBydP1Iy6leqNIo2wx478p
}
variable "cloudflare_api_token" {
description = "my cloudflare api token here"
type = string
sensitive = true
default = ""
}