20 lines
643 B
HCL
20 lines
643 B
HCL
output "corso_k8s_instances" {
|
|
description = "Instance IDs of the corso-k8s VMs"
|
|
value = openstack_compute_instance_v2.corso_k8s[*].id
|
|
}
|
|
|
|
output "corso_k8s_public_ips" {
|
|
description = "Floating IP addresses of the corso-k8s VMs"
|
|
value = openstack_networking_floatingip_v2.corso_k8s_ip[*].address
|
|
}
|
|
|
|
output "corso_k8s_hostnames" {
|
|
description = "DNS hostnames of the corso-k8s VMs"
|
|
value = openstack_dns_recordset_v2.corso_k8s_dns[*].name
|
|
}
|
|
|
|
output "corso_k8s_private_ips" {
|
|
description = "Private IP addresses of the corso-k8s VMs"
|
|
value = openstack_networking_port_v2.corso_k8s_port[*].all_fixed_ips
|
|
}
|