1 heat_template_version: 2013-05-23
2 description: create a Nova instance, a Cinder volume and attach the volume to the instance.
7 label: Instance name or ID
8 description: ID of the vm to use for the disk to be attached too
12 description: Size of the volume to be created.
15 type: OS::Cinder::Volume
17 size: { get_param: volume_size }
19 type: OS::Cinder::VolumeAttachment
21 volume_id: { get_resource: cinder_volume }
22 instance_uuid: { get_param: nova_instance }