mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-29 17:36:17 -05:00
15 lines
423 B
HCL
15 lines
423 B
HCL
output "ips" {
|
|
value = openstack_compute_instance_v2.instance_group_member.*.access_ip_v4
|
|
description = "Public IP addresses of the instances."
|
|
}
|
|
|
|
output "instance_ids" {
|
|
value = openstack_compute_instance_v2.instance_group_member.*.id
|
|
description = "IDs of the instances."
|
|
}
|
|
|
|
output "port_ids" {
|
|
value = openstack_networking_port_v2.port.*.id
|
|
description = "IDs of ports of the instances."
|
|
}
|