push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-impl / src / test / resources / openecomp / org / validation / validators / ecompGuideLineValidator / heatPortFixedIpNamingConvention / positive / first.yaml
1 heat_template_version: 2013-05-23
2
3 description: heat expose volume resource
4
5 resources:
6   port_resource_0:
7     type: OS::Neutron::Port
8     properties:
9      network_id: { get_param: Internal1_net_id }
10      fixed_ips:
11       - ip_address: {get_param: pcrf_net_ips}
12
13   port_resource_1:
14     type: OS::Neutron::Port
15     properties:
16      network_id: { get_param: Internal1_net_name }
17      fixed_ips:
18       - ip_address: {get_param: pcrf_net_v6_ips}
19
20   port_resource_2:
21     type: OS::Neutron::Port
22     properties:
23      network_id: { get_param: Internal1_net_fqdn }
24      fixed_ips:
25       - ip_address: {get_param: pcrf_net_ip_4}
26       - ip_address: {get_param: pcrf_net_v6_ip_4}
27
28 outputs:
29   expose_resource_port_output_0:
30     description: the pcrf_server
31     value: { get_resource: port_resource_0 }
32   expose_resource_port_output_1:
33     description: the pcrf_server
34     value: { get_resource: port_resource_1 }
35   expose_resource_port_output_2:
36     description: the pcrf_server
37     value: { get_resource: port_resource_2 }
38
39