mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
12 lines
238 B
HCL
12 lines
238 B
HCL
output "instance_group" {
|
|
value = local.name
|
|
}
|
|
|
|
output "ips" {
|
|
value = openstack_compute_instance_v2.instance_group_member.*.access_ip_v4
|
|
}
|
|
|
|
output "instance_ids" {
|
|
value = openstack_compute_instance_v2.instance_group_member.*.id
|
|
}
|