-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutputs.tf
More file actions
24 lines (24 loc) · 837 Bytes
/
outputs.tf
File metadata and controls
24 lines (24 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
output "chef_zero" {
value = "${openstack_compute_instance_v2.chef_zero.network.0.fixed_ip_v4}"
}
output "database" {
value = "${openstack_compute_instance_v2.database.network.0.fixed_ip_v4}"
}
output "database_region2" {
value = length(module.region2) > 0 ? module.region2[0].database_region2 : null
}
output "ceph" {
value = "${openstack_compute_instance_v2.ceph.network.0.fixed_ip_v4}"
}
output "controller" {
value = "${openstack_compute_instance_v2.controller.network.0.fixed_ip_v4}"
}
output "controller_region2" {
value = length(module.region2) > 0 ? module.region2[0].controller_region2 : null
}
output "compute" {
value = "${openstack_compute_instance_v2.compute.network.0.fixed_ip_v4}"
}
output "compute_region2" {
value = length(module.region2) > 0 ? module.region2[0].compute_region2 : null
}