Actualiser variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 6s

This commit is contained in:
2025-07-05 10:00:08 +02:00
parent 0be32b1e66
commit f434f3940e

View File

@@ -2,16 +2,17 @@ variable "cloudflare_email" {
description = "L'adresse électronique associée au compte."
type = string
sensitive = true
default = ${{ secrets.EMAIL }}
#thedjinhn@gmail.com
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 = ${{ secrets.ZONE_ID }}
#a5eb1b667ba2fde356ecf6707d0dd309
default = "${{ secrets.ZONE_ID }}"
#"a5eb1b667ba2fde356ecf6707d0dd309"
}
variable "ip_server_a" {