hcornet d76cae78e9
Some checks failed
terraform validation / Terraform (push) Failing after 8s
update
2025-01-13 20:43:15 +01:00

20 lines
585 B
HCL

variable "cloudflare_email" {
description = "The email associated with the account. This can also be specified with the CLOUDFLARE_EMAIL shell environment variable."
default = "default"
}
variable "cloudflare_token" {
description = "The Cloudflare API token. This can also be specified with the CLOUDFLARE_TOKEN shell environment variable."
default = "default"
}
variable "cloudflare_zone" {
description = "The DNS zone to add the record to."
default = "default"
}
variable "main_server" {
description = "The main web server"
default = "127.0.0.1"
}