mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-27 08:31:32 -03:30
* Run terraform fmt * Add terraform fmt to .terraform-validate CI step * Add tf-validate-aws CI step * Revert "Add tf-validate-aws CI step" This reverts commit e007225fac831d263613ae9ab2998d11c3e8673d.
16 lines
354 B
HCL
16 lines
354 B
HCL
output "k8s_masters" {
|
|
value = "${packet_device.k8s_master.*.access_public_ipv4}"
|
|
}
|
|
|
|
output "k8s_masters_no_etc" {
|
|
value = "${packet_device.k8s_master_no_etcd.*.access_public_ipv4}"
|
|
}
|
|
|
|
output "k8s_etcds" {
|
|
value = "${packet_device.k8s_etcd.*.access_public_ipv4}"
|
|
}
|
|
|
|
output "k8s_nodes" {
|
|
value = "${packet_device.k8s_node.*.access_public_ipv4}"
|
|
}
|