aboutsummaryrefslogtreecommitdiff
blob: dcee8e913f9f550b90cf7ef8cdc3fb868ca0d3cb (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
28
29
30
31
32
33
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
}

variable "edgerouterx_ip" {
  description = "IP address for EdgeRouterX"
  type = string
  sensitive = false
}
Powered by cgit v1.2.3 (git 2.41.0)