Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- heat_template_version: 2015-10-15
- description: Launch a basic instance with CirrOS image using the
- ``m1.tiny`` flavor, ``mykey`` key, and one network.
- #parameters:
- # NetID:
- # type: string
- # description: Network ID to use for the instance.
- resources:
- server:
- type: OS::Nova::Server
- properties:
- flavor: m1.medium
- image: cirros
- networks:
- - network: net1
- outputs:
- instance_name:
- description: Name of the instance.
- value: { get_attr: [ server, name ] }
- instance_ip:
- description: IP address of the instance.
- value: { get_attr: [ server, first_address ] }
- instance_id:
- description: IP address of the instance.
- value: { get_resource: server }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement