[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / vol_attach / nested_with_inner_vol / inputfiles / a_vol.yml
1 heat_template_version: 2013-05-23
2
3 description: volume
4
5 parameters:
6   cmaui_cinder_volume_size:
7      type: number
8      label: CMAUI Cinder volume size
9      description: the size of the CMAUI Cinder volume
10   CMAUI_volume_type:
11     type: string
12     label: CMAUI vm volume type
13     description: the name of the target volume backend
14
15 resources:
16   cmaui_volume:
17      type: OS::Cinder::Volume
18      properties:
19        size: {get_param: cmaui_cinder_volume_size}
20        volume_type: {get_param: CMAUI_volume_type}
21
22 outputs:
23     out_cmaui_volume:
24       value: {get_resource: cmaui_volume}