homelab_flarum/terraform/variables.tf

35 lines
790 B
Terraform
Raw Normal View History

2024-03-05 08:32:15 -06:00
variable "cloudflare_token" {
type = string
description = "Cloudflare DNS:Edit token"
}
variable "zone_id" {
type = string
description = "The Cloudflare Zone ID"
}
variable "account_id" {
type = string
description = "The Cloudflare Account ID"
}
variable "cname_record" {
type = string
description = "The CNAME record used by the Cloudflared tunnel"
}
variable "acme_reg_email" {
type = string
description = "The registration email for the TLS certificates"
}
variable "domain_name" {
type = string
description = "The domain name (common name) for the TLS certificates ex. example.com"
}
variable "fqdn" {
type = string
description = "The Fully Qualified Domain Name (alt name) ex. subdomain.example.com"
}