push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / hot-nimbus-oam-volumes_v1.0 / inputfiles / hot-nimbus-pcm-volumes_v1.0.yaml
1 heat_template_version:  2013-05-23
2
3 parameters:
4    pcrf_pcm_vol_size:
5      type: number
6      label: Cinder volume size
7      description: the size of the Cinder volume
8    pcrf_pcm_vol_name_1:
9      type: string
10      label: PCM volume name
11      description: Assigning name to volume
12    pcrf_pcm_volume_silver:
13      type: string
14      label: vm volume type
15      description: the name of the target volume backend for PCM
16
17 resources: 
18   pcrf_pcm_volume_id_1:
19      type: OS::Cinder::Volume
20      properties:
21       size: { get_param: pcrf_pcm_vol_size }
22       volume_type: { get_param: pcrf_pcm_volume_silver }
23       name: { get_param: pcrf_pcm_vol_name_1 }
24
25 outputs:
26   pcrf_pcm_volume_id_1:
27     description: the pcrf_pcm_volume_id
28     value: { get_resource: pcrf_pcm_volume_id_1 }