mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-27 07:39:33 +01:00
16 lines
393 B
Terraform
16 lines
393 B
Terraform
|
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"
|
||
|
}
|