diff --git a/variables.tf b/variables.tf index 40c0697..0f806ed 100644 --- a/variables.tf +++ b/variables.tf @@ -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" {