mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 17:49:32 +01:00
7b8a51070f
* With the new component system, these components can be managed independent from the cluster and rolled or edited in advanced ways
16 lines
393 B
HCL
16 lines
393 B
HCL
variable "replicas" {
|
|
type = number
|
|
description = "CoreDNS replica count"
|
|
default = 2
|
|
}
|
|
|
|
variable "cluster_dns_service_ip" {
|
|
description = "Must be set to `cluster_dns_service_ip` output by cluster"
|
|
default = "10.3.0.10"
|
|
}
|
|
|
|
variable "cluster_domain_suffix" {
|
|
description = "Must be set to `cluster_domain_suffix` output by cluster"
|
|
default = "cluster.local"
|
|
}
|