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
331 B

  1. output "k8s_masters" {
  2. value = metal_device.k8s_master.*.access_public_ipv4
  3. }
  4. output "k8s_masters_no_etc" {
  5. value = metal_device.k8s_master_no_etcd.*.access_public_ipv4
  6. }
  7. output "k8s_etcds" {
  8. value = metal_device.k8s_etcd.*.access_public_ipv4
  9. }
  10. output "k8s_nodes" {
  11. value = metal_device.k8s_node.*.access_public_ipv4
  12. }