[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 / novatovolumeconnection / multiconnection / inputfiles / main.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_volume1:
17      type: OS::Cinder::Volume
18      properties:
19        size: {get_param: cmaui_cinder_volume_size}
20        volume_type: {get_param: CMAUI_volume_type}
21   cmaui_volume2:
22      type: OS::Cinder::Volume
23      properties:
24        size: {get_param: cmaui_cinder_volume_size}
25        volume_type: {get_param: CMAUI_volume_type}
26
27 outputs:
28     cmaui_volume_param1:
29       value: {get_resource: cmaui_volume1}
30     cmaui_volume_param2:
31       value: {get_resource: cmaui_volume2}