deb-sahara/sahara/resources/volume.heat
Alexander Ignatov f4d426148b Fixed wrong attached volume's names via Heat
* Added "name" property to the 'volume.heat' template

Change-Id: I18b5e59adeea7ba348366b0975b396dca028102d
Closes-Bug: #1278817
2014-03-29 12:58:55 +00:00

16 lines
522 B
Plaintext

"%(volume_name)s" : {
"Type" : "OS::Cinder::Volume",
"Properties" : {
"name" : "%(volume_name)s",
"size" : "%(volumes_size)s"
}
},
"%(volume_attach_name)s" : {
"Type" : "OS::Cinder::VolumeAttachment",
"Properties" : {
"instance_uuid" : { "Ref" : "%(instance_name)s" },
"volume_id" : { "Ref" : "%(volume_name)s" },
"mountpoint" : null
}
}