Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ├── main.tf
- ├── modules
- │ ├── instance
- │ │ ├── main.tf
- │ │ ├── output.tf
- │ │ └── vars.tf
- │ └── instance_with_data_volume
- │ ├── main.tf
- │ ├── output.tf
- │ └── vars.tf
- ├── partner.staging.tf
- ├── secret.tfvars
- └── variables.tf
- *instance_with_data_volume*/output.tf
- output "instances_list" {
- value = "${openstack_compute_instance_v2.instance}"
- }
- output "port_list" {
- value = "${openstack_networking_port_v2.port}"
- }
- output "instance_ip_list" {
- value = "${openstack_networking_port_v2.port.*.all_fixed_ips.0}"
- }
- output "name" {
- value = "${openstack_compute_instance_v2.instance.*.name}"
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement