You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
373 B
21 lines
373 B
heat_template_version: 2016-10-14
|
|
|
|
parameters:
|
|
instance_uuid:
|
|
type: string
|
|
|
|
resources:
|
|
cinder_volume:
|
|
type: OS::Cinder::Volume
|
|
properties:
|
|
name: vol1
|
|
size: 1
|
|
|
|
cinder_volume_attach:
|
|
type: OS::Cinder::VolumeAttachment
|
|
properties:
|
|
instance_uuid:
|
|
get_param: instance_uuid
|
|
volume_id:
|
|
get_resource: cinder_volume
|