34 lines
464 B
HCL
34 lines
464 B
HCL
variable "kube_config_path" {
|
|
type = string
|
|
}
|
|
|
|
variable "kube_namespace" {
|
|
type = string
|
|
}
|
|
|
|
variable "kube_tls_secret_name" {
|
|
type = string
|
|
default = "origin-tls"
|
|
}
|
|
|
|
variable "cloudflare_api_token" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "cloudflare_account_id" {
|
|
type = string
|
|
}
|
|
|
|
variable "cloudflare_zone_id" {
|
|
type = string
|
|
}
|
|
|
|
variable "cloudflare_subdomain" {
|
|
type = string
|
|
}
|
|
|
|
variable "cloudflare_ingress_host" {
|
|
type = string
|
|
}
|