c est un bon debut
Some checks failed
terraform validation / Terraform (push) Failing after 10s

This commit is contained in:
2025-01-13 21:40:56 +01:00
parent dfcbd1ebcc
commit 05c371e282
5 changed files with 33 additions and 35 deletions

View File

@@ -1,23 +1,23 @@
variable "cloudflare_email" {
description = "The email associated with the account. This can also be specified with the CLOUDFLARE_EMAIL shell environment variable."
description = "L'adresse électronique associée au compte."
type = string
default = "thedjinhn@gmail.com"
}
variable "cloudflare_api_token" {
description = "The Cloudflare API token. This can also be specified with the CLOUDFLARE_TOKEN shell environment variable."
description = "Le jeton de l'API Cloudflare."
type = string
default = "EMVLdieKXA6X-ifx0tW0ELNQGde5XrJ3D8T-qcEY"
}
variable "cloudflare_zone" {
description = "The DNS zone to add the record to."
description = "La zone DNS à laquelle ajouter l'enregistrement."
type = string
default = "tips-of-mine.com"
}
variable "main_server" {
description = "The main web server"
description = "Le serveur principal"
type = string
default = "82.66.77.254"
}