2018-12-16 06:48:08 +01:00
|
|
|
output "kubeconfig-admin" {
|
|
|
|
value = "${module.bootkube.user-kubeconfig}"
|
|
|
|
}
|
|
|
|
|
2017-07-29 20:35:53 +02:00
|
|
|
output "controllers_dns" {
|
2017-07-29 21:04:08 +02:00
|
|
|
value = "${digitalocean_record.controllers.0.fqdn}"
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
output "workers_dns" {
|
2018-10-28 07:01:50 +01:00
|
|
|
# Multiple A and AAAA records with the same FQDN
|
|
|
|
value = "${digitalocean_record.workers-record-a.0.fqdn}"
|
2017-07-29 20:35:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
output "controllers_ipv4" {
|
|
|
|
value = ["${digitalocean_droplet.controllers.*.ipv4_address}"]
|
|
|
|
}
|
|
|
|
|
|
|
|
output "controllers_ipv6" {
|
|
|
|
value = ["${digitalocean_droplet.controllers.*.ipv6_address}"]
|
|
|
|
}
|
|
|
|
|
|
|
|
output "workers_ipv4" {
|
|
|
|
value = ["${digitalocean_droplet.workers.*.ipv4_address}"]
|
|
|
|
}
|
|
|
|
|
|
|
|
output "workers_ipv6" {
|
|
|
|
value = ["${digitalocean_droplet.workers.*.ipv6_address}"]
|
|
|
|
}
|