push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / novatovolumeconnection / nestedconnection / 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_vol:
18      type: OS::Cinder::Volume
19      properties:
20        size: {get_param: cmaui_cinder_volume_size}
21        volume_type: {get_param: CMAUI_volume_type}
22
23   test_nested:
24     type: nested.yml
25     properties:
26       cmaui_volume_param: { get_resource: test_vol}