summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/org/openecomp/validation/validators/attGuideLineValidator/heatPortNetworkNamingConvention/negative/first.yaml
blob: abbf650c8db973384e50292f29313fd29bc8eb36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
heat_template_version: 2013-05-23

description: heat expose volume resource

resources:
  port_resource:
    type: OS::Neutron::Port
    properties:
     network_id: { get_param: not_valid_network_name }
  port_resource_1:
    type: OS::Neutron::Port
    properties:
     network_id: { get_param: not_valid_net }
  port_resource_2:
    type: OS::Neutron::Port
    properties:
     network_id: { get_param: not_valid_net_id_error }
  port_resource_3:
      type: OS::Neutron::Port
      properties:
       network_id: { get_param:   }

outputs:
  expose_resource_port_output:
    description: the pcrf_server
    value: { get_resource: port_resource }