Advertisement
Guest User

template

a guest
Feb 21st, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. heat_template_version: 2015-10-15
  2. description: Launch a basic instance with CirrOS image using the
  3. ``m1.tiny`` flavor, ``mykey`` key, and one network.
  4.  
  5. #parameters:
  6. # NetID:
  7. # type: string
  8. # description: Network ID to use for the instance.
  9. resources:
  10. server:
  11. type: OS::Nova::Server
  12. properties:
  13. flavor: m1.medium
  14. image: cirros
  15. networks:
  16. - network: net1
  17. outputs:
  18. instance_name:
  19. description: Name of the instance.
  20. value: { get_attr: [ server, name ] }
  21. instance_ip:
  22. description: IP address of the instance.
  23. value: { get_attr: [ server, first_address ] }
  24. instance_id:
  25. description: IP address of the instance.
  26. value: { get_resource: server }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement