Advertisement
Guest User

Untitled

a guest
Oct 25th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. ├── main.tf
  2. ├── modules
  3. │ ├── instance
  4. │ │ ├── main.tf
  5. │ │ ├── output.tf
  6. │ │ └── vars.tf
  7. │ └── instance_with_data_volume
  8. │ ├── main.tf
  9. │ ├── output.tf
  10. │ └── vars.tf
  11. ├── partner.staging.tf
  12. ├── secret.tfvars
  13. └── variables.tf
  14.  
  15. *instance_with_data_volume*/output.tf
  16. output "instances_list" {
  17. value = "${openstack_compute_instance_v2.instance}"
  18. }
  19. output "port_list" {
  20. value = "${openstack_networking_port_v2.port}"
  21. }
  22.  
  23. output "instance_ip_list" {
  24. value = "${openstack_networking_port_v2.port.*.all_fixed_ips.0}"
  25. }
  26.  
  27. output "name" {
  28. value = "${openstack_compute_instance_v2.instance.*.name}"
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement