24 lines
602 B
HCL
24 lines
602 B
HCL
variable "cloudflare_email" {
|
|
description = "L'adresse électronique associée au compte."
|
|
type = string
|
|
default = "thedjinhn@gmail.com"
|
|
}
|
|
|
|
variable "cloudflare_api_token" {
|
|
description = "Le jeton de l'API Cloudflare."
|
|
type = string
|
|
default = "EMVLdieKXA6X-ifx0tW0ELNQGde5XrJ3D8T-qcEY"
|
|
}
|
|
|
|
variable "cloudflare_zone" {
|
|
description = "La zone DNS à laquelle ajouter l'enregistrement."
|
|
type = string
|
|
default = "tips-of-mine.com"
|
|
}
|
|
|
|
variable "main_server" {
|
|
description = "Le serveur principal"
|
|
type = string
|
|
default = "82.66.77.254"
|
|
}
|