push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / novatovolumeconnection / sharednestedconnection / inputfiles / main.yml
1 heat_template_version: 2013-05-23
2
3 description: >
4   Version 2.0 02-09-2016 (Authors: John Doe, user PROD)
5
6 parameters:
7     cmaui_cinder_volume_size:
8        type: number
9        label: CMAUI Cinder volume size
10        description: the size of the CMAUI Cinder volume
11     CMAUI_volume_type:
12       type: string
13       label: CMAUI vm volume type
14       description: the name of the target volume backend
15
16 resources:
17   test_vol1:
18      type: OS::Cinder::Volume
19      properties:
20        size: {get_param: cmaui_cinder_volume_size}
21        volume_type: {get_param: CMAUI_volume_type}
22   test_vol2:
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     shared_vol1:
30       value: {get_resource: test_vol1}
31     shared_vol2:
32           value: {get_resource: test_vol2}