aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-translator-lib/openecomp-sdc-translator-core/src/test/resources/mock/services/heattotosca/VlanToNetConnection/nested/inputfiles/main.yml
blob: e68f16ec29dea15e108cc4f293a0585e9f62a98f (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
heat_template_version: 2013-05-23

description: >
  Version 2.0 02-09-2016 (Authors: John Doe, user PROD)

parameters:
  jsa_net_name:
    type: string
    description: network name of jsa log network

resources:
  test_net:
    type: OS::Neutron::Net
    properties:
      name: {get_param: jsa_net_name}
      shared: True
  test_net1:
    type: OS::Neutron::Net
    properties:
      name: {get_param: jsa_net_name}
      shared: True

  test_nested:
    type: nested.yml
    properties:
      p1: { get_resource: test_net}
      p2: { get_resource: test_net1}