Skip to content

Instantly share code, notes, and snippets.

@therve
Created February 26, 2014 14:49
Show Gist options
  • Select an option

  • Save therve/9230730 to your computer and use it in GitHub Desktop.

Select an option

Save therve/9230730 to your computer and use it in GitHub Desktop.
heat_template_version: 2013-05-23
parameters:
volume_size:
type: number
description: The size of the created volume
resources:
myvolume:
type: OS::Cinder::Volume
properties:
size: {get_param: volume_size}
outputs:
creation_date:
value: {get_attr: [myvolume, created_at]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment