aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/resources/nimbus/hot-nimbus-pcm-volumes_v1.0.yaml
blob: bcc3e89f7101ff97dbf01adf21e3c86a7d5d32e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
heat_template_version:  2013-05-23

parameters:
   pcrf_pcm_vol_size:
     type: number
     label: Cinder volume size
     description: the size of the Cinder volume
   pcrf_pcm_vol_name_1:
     type: string
     label: PCM volume name
     description: Assigning name to volume
   pcrf_pcm_volume_silver:
     type: string
     label: vm volume type
     description: the name of the target volume backend for PCM

resources: 
  pcrf_pcm_volume_1:
     type: OS::Cinder::Volume
     properties:
      size: { get_param: pcrf_pcm_vol_size }
      volume_type: { get_param: pcrf_pcm_volume_silver }
      name: { get_param: pcrf_pcm_vol_name_1 }

outputs:
  pcrf_pcm_volume_id_1:
    description: the pcrf_pcm_volume_id
    value: { get_resource: pcrf_pcm_volume_1 }