k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
335 B
16 lines
335 B
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
|
|
}
|
|
|