Merge "Reorder modifiers"
[so.git] / packages / arquillian-unit-tests / src / test / resources / resource-examples / asdc / simpleNotif-V1 / artifacts / hot-nimbus-oam-volumes_v1.0.yaml
1 heat_template_version:  2013-05-23
2
3 parameters:
4     pcrf_oam_vol_size:
5      type: number
6      label: Cinder volume size
7      description: the size of the Cinder volume
8     pcrf_oam_vol_name_1:
9      type: string
10      label: OAM volume name 1
11      description: Assigning name to volume
12     pcrf_oam_vol_name_2:
13      type: string
14      label: OAM volume name 2
15      description: Assigning name to volume
16     pcrf_oam_volume_silver-1:
17      type: string
18      label: vm volume type
19      description: the name of the target volume backend for OAM1
20     pcrf_oam_volume_silver-2:
21      type: string
22      label: vm volume type
23      description: the name of the target volume backend for OAM2
24
25 resources:
26   pcrf_oam_volume_1:
27     type: OS::Cinder::Volume
28     properties:
29       size: {get_param: pcrf_oam_vol_size}
30       volume_type: {get_param: pcrf_oam_volume_silver-1}
31       name: {get_param: pcrf_oam_vol_name_1}
32
33   pcrf_oam_volume_2:
34     type: OS::Cinder::Volume
35     properties:
36       size: {get_param: pcrf_oam_vol_size}
37       volume_type: {get_param: pcrf_oam_volume_silver-2}
38       name: {get_param: pcrf_oam_vol_name_2}
39 outputs:
40   pcrf_oam_volume_id_1:
41     description: the oam 001 volume id
42     value: { get_resource: pcrf_oam_volume_1 }
43   pcrf_oam_volume_id_2:
44     description: the oam 002 volume id
45     value: { get_resource: pcrf_oam_volume_2 }