push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / novatovolumeconnection / innernestedconnection / 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   inner_cmaui_volume_a1:
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   cmaui_volume2:
23      type: OS::Cinder::Volume
24      properties:
25        size: {get_param: cmaui_cinder_volume_size}
26        volume_type: {get_param: CMAUI_volume_type}
27
28 outputs:
29     inner_cmaui_volume_a1:
30       value: {get_resource: inner_cmaui_volume_a1}
31     inner_cmaui_volume_a2:
32           value: {get_resource: cmaui_volume2}