[VVP] updating nested parameter test
[vvp/validation-scripts.git] / ice_validator / tests / fixtures / test_nested_parameters / pass / base_stark_volume.yaml
1 heat_template_version: 2014-10-16
2
3 description: >
4   this is a test
5
6 parameters:
7
8   count: 
9     type: string
10     description: nsdkfla
11
12   vnf_name:
13     type: string
14     label: VF name
15     description: Unique name for this VF instance.
16
17   vf_module_id:
18     type: string
19     label: VF module id
20     description: VF module id
21
22   vf_module_name:
23     type: string
24     label: VF module name
25     description: Unique name for this VF module instance.
26
27   stark_volume_size:
28     type: number
29     label: stark cinder volume size 
30     description: Size of the Cinder volume. Measured in gigabytes.
31
32 resources:
33
34   stark_volume_RG:
35     type: OS::Heat::ResourceGroup
36     properties:
37       count: { get_param: count }
38       resource_def:
39         type: base_stark_nested_volume.yaml
40         properties:
41           vnf_name: {get_param: vnf_name}
42           vf_module_id: { get_param: vf_module_id }
43           vf_module_name: { get_param: vf_module_name }
44           stark_volume_size: { get_param: stark_volume_size }
45
46 outputs:
47
48   stark_volumes:
49     value: { get_attr: [stark_volume_RG, stark_volume_0] } 
50     description: test
51