[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-impl / src / test / resources / org / openecomp / validation / validators / attGuideLineValidator / heatNovaServerImageAndFlavor / negative / first.yaml
1 heat_template_version: 2013-05-23
2
3 description: heat expose volume resource
4
5 resources:
6   FSB2:
7     type: OS::Nova::Server
8     properties:
9       name: { get_param: fsb2_name_2 }
10       block_device_mapping: [{device_name: "vda", volume_id : {get_param: VMME_FSB2_boot_volume }, delete_on_termination: "false" }]
11       flavor: { get_param: fsb2-flavor }
12       availability_zone: { get_param: availability_zone_0 }
13       metadata:
14         VNF_id: { get_param: vnfvfVF_id }
15         vf_module_id: { get_param: vf_module_id }
16       networks:
17         - port: { get_resource: FSB2_Internal1 }
18         - port: { get_resource: FSB2_Internal2 }
19         - port: { get_resource: FSB2_OAM }
20
21   FSB3:
22     type: OS::Nova::Server
23     properties:
24       name: { get_param: fsb2_name_2 }
25       block_device_mapping: [{device_name: "vda", volume_id : {get_param: VMME_FSB2_boot_volume }, delete_on_termination: "false" }]
26       image: { get_param: fsb2-image }
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
36 outputs:
37   expose_resource_nove_output:
38     description: the pcrf_server
39     value: { get_resource: FSB2 }
40
41