[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-impl / src / test / resources / org / openecomp / validation / validators / attGuideLineValidator / heatNovaServerNameValidation / negative / first.yaml
1 heat_template_version: 2013-05-23
2
3 description: heat expose volume resource
4
5 resources:
6
7   FSB2:
8     type: OS::Nova::Server
9     properties:
10       name: {get_param: pcrf_pps_server_4}
11       block_device_mapping: [{device_name: "vda", volume_id : {get_param: VMME_FSB2_boot_volume }, delete_on_termination: "false" }]
12       flavor: { get_param: fsb2_flavor_name }
13       availability_zone: { get_param: availability_zone_0 }
14       metadata:
15         VnF_id: { get_param: vnfvfVF_id }
16         vf_module_id: { get_param: vf_module_id }
17       networks:
18         - port: { get_resource: FSB2_Internal1 }
19         - port: { get_resource: FSB2_Internal2 }
20         - port: { get_resource: FSB2_OAM }
21   FSB3:
22       type: OS::Nova::Server
23       properties:
24         name: { get_param: [pcrf_pps_server, 0] }
25         block_device_mapping: [{device_name: "vda", volume_id : {get_param: VMME_FSB2_boot_volume }, delete_on_termination: "false" }]
26         flavor: { get_param: fsb2_flavor_name }
27         availability_zone: { get_param: availability_zone_0 }
28         metadata:
29           VnF_id: { get_param: vnfvfVF_id }
30           vf_module_id: { get_param: vf_module_id }
31         networks:
32           - port: { get_resource: FSB2_Internal1 }
33           - port: { get_resource: FSB2_Internal2 }
34           - port: { get_resource: FSB2_OAM }
35 outputs:
36   expose_resource_nove_output2:
37     description: the pcrf_server
38     value: { get_resource: FSB2 }
39   expose_resource_nove_output3:
40       description: the pcrf_server
41       value: { get_resource: FSB3 }
42
43