push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / heat / nested / nestedvolumeseperatefile / inputs / nested-pcm_v0.1.yaml
1 heat_template_version: 2013-05-23
2
3 description: heat template that creates PCRF Cluman stack
4
5 parameters:
6   pcm_server_name:
7     type: string
8     label: PCRF CM server name
9     description: PCRF CM server name
10
11   nove_001_vol_property:
12     type: string
13     label: volume
14     description: volume name
15
16   nova_image_name:
17       type: string
18       label: volume
19       description: nova image name
20
21 resources:
22   nova_001:
23     type: OS::Nova::Server
24     properties:
25       not_null: not_null
26       image: {get_param: nova_image_name}
27   nove_001_vol_attach:
28     type: OS::Cinder::VolumeAttachment
29     properties:
30       volume_id: {get_param: nove_001_vol_property}
31       instance_uuid: {get_resource: nova_001}