push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-impl / src / test / resources / openecomp / org / validation / validators / ecompGuideLineValidator / heatNovaNetworkUniqueRoleConvention / negative / first.yaml
1 heat_template_version: 2013-05-23
2
3 description: heat expose volume resource
4
5 resources:
6   FSB2_Internal1:
7       type: OS::Neutron::Port
8       properties:
9         network_id: { get_param: Internal1_net_id }
10   FSB2_Internal2:
11       type: OS::Neutron::Port
12       properties:
13         network_id: { get_param: Internal2_net_id }
14   FSB2_OAM:
15       type: OS::Neutron::Port
16       properties:
17         network_id: { get_param: Internal1_net_name }
18   FSB2:
19     type: OS::Nova::Server
20     properties:
21       name: { get_param: fsb_name_2 }
22       block_device_mapping: [{device_name: "vda", volume_id : {get_param: VMME_FSB2_boot_volume }, delete_on_termination: "false" }]
23       flavor: { get_param: fsb2_flavor_name }
24       availability_zone: { get_param: availability_zone_0 }
25       metadata:
26         VNF_id: { get_param: vnfvfVF_id }
27         vf_module_id: { get_param: vf_module_id }
28       networks:
29         - port: { get_resource: FSB2_Internal1 }
30         - port: { get_resource: FSB2_Internal2 }
31         - port: { get_resource: FSB2_OAM }
32 outputs:
33   expose_resource_nove_output:
34     description: the pcrf_server
35     value: { get_resource: FSB2 }
36
37