aboutsummaryrefslogtreecommitdiff
blob: 5326464f9abb323ffc010a6432794b10bcacecd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
variable "homelab_main_domain" {
  description = "HomeLab Main Domain"
  default     = "clarkzjw.cc"
}

variable "homelab_notify_DKIM" {
  description = "DKIM domain value from Mailgun"
  default     = "k=rsa; p=xxxx"
}

variable "cloudflare_account_id" {
  description = "The Cloudflare UUID for the Account the Zone lives in."
  type        = string
  sensitive   = true
}

variable "cloudflare_api_token" {
  description = "Cloudflare API token"
  type = string
  sensitive = true
}

variable "cloudflare_access_application_email" {
  description = "Email addresses allowed in Cloudflare Access config"
  type = string
  sensitive = false
}
Powered by cgit v1.2.3 (git 2.41.0)