[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-impl / src / test / resources / openecomp / org / validation / validators / ecompGuideLineValidator / heatPortNetworkNamingConvention / negative / first.yaml
1 heat_template_version: 2013-05-23
2
3 description: heat expose volume resource
4
5 resources:
6   port_resource:
7     type: OS::Neutron::Port
8     properties:
9      network_id: { get_param: not_valid_network_name }
10   port_resource_1:
11     type: OS::Neutron::Port
12     properties:
13      network_id: { get_param: not_valid_net }
14   port_resource_2:
15     type: OS::Neutron::Port
16     properties:
17      network_id: { get_param: not_valid_net_id_error }
18   port_resource_3:
19       type: OS::Neutron::Port
20       properties:
21        network_id: { get_param:   }
22
23 outputs:
24   expose_resource_port_output:
25     description: the pcrf_server
26     value: { get_resource: port_resource }
27
28