aboutsummaryrefslogtreecommitdiffstats
path: root/openlab/modules/openstack/compute/output.tf
blob: 28ae6d0f54d23d5b12166f37e288c8f7ee1a2b9c (plain)
1
2
3
4
5
6
7
8
9
10
11
output "floating_ips" {
  value = [openstack_compute_floatingip_associate_v2.floatipassociation.*.floating_ip]
}

output "fixed_ips" {
  value = [openstack_compute_instance_v2.nodes.*.access_ip_v4]
}

output "hostnames" {
  value = [openstack_compute_instance_v2.nodes.*.name]
}