[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / fulltest / singleSubstitution / generalVf / in / vmme_small_create_fsb.yml
1 heat_template_version:  2013-05-23
2
3 description: server template for vMME
4
5 parameters:
6
7       volume_type:
8         type: string
9         label:  volume type
10         description: volume type Gold
11
12       volume_size:
13         type: number
14         label:  volume size
15         description: my volume size 320GB
16
17       FSB_1_image:
18         type: string
19         label: MME_FSB1
20         description: MME_FSB1_15B-CP04-r5a01
21
22       FSB_2_image:
23         type: string
24         label: MME_FSB2
25         description: MME_FSB2_15B-CP04-r5a01
26
27       FSB1_volume_name:
28         type: string
29         label: FSB1_volume
30         description: FSB1_volume_1
31
32       FSB2_volume_name:
33         type: string
34         label: FSB2_volume
35         description: FSB2_volume_1
36
37 resources:
38
39     FSB1_volume:
40       type: OS::Cinder::Volume
41       properties:
42         size: {get_param: volume_size}
43         volume_type: {get_param: volume_type}
44         name: {get_param: FSB1_volume_name}
45         image: {get_param: FSB_1_image}
46
47     FSB2_volume:
48       type: OS::Cinder::Volume
49       properties:
50         size: {get_param: volume_size}
51         volume_type: {get_param: volume_type}
52         name: {get_param: FSB2_volume_name}
53         image: {get_param: FSB_2_image}
54