mirror of
https://github.com/puppetmaster/typhoon.git
synced 2025-07-20 00:11:37 +02:00
Simplify google-cloud cluster variables
* Remove k8s_domain_name input variable, the controller DNS record will be "${var.cluster_name}.${dns_zone}" * Rename dns_base_zone to dns_zone * Rename dns_base_zone_name to dns_zone_name
This commit is contained in:
@ -6,7 +6,7 @@ resource "null_resource" "bootkube-start" {
|
||||
# TODO: SSH to a controller's IP instead of waiting on DNS resolution
|
||||
connection {
|
||||
type = "ssh"
|
||||
host = "${var.k8s_domain_name}"
|
||||
host = "${format("%s.%s", var.cluster_name, var.dns_zone)}"
|
||||
user = "core"
|
||||
timeout = "15m"
|
||||
}
|
||||
|
Reference in New Issue
Block a user