[SDC-29] rebase continue work to align source
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / contrail2serviceinstance / connectToNetworkSharedMultiNested / inputfiles / base.yml
1 heat_template_version: 2013-05-23
2
3 description: ASC External Networks Template
4
5 parameters:
6   Internal1_net_name:
7     type: string
8   Internal2_net_name:
9     type: string
10   Internal1_forwarding_mode:
11     type: string
12   Internal2_forwarding_mode:
13     type: string
14   Internal1_shared:
15     type: string
16   Internal2_shared:
17     type: string
18
19 resources:
20   Internal1-net:
21     type: OS::Contrail::VirtualNetwork
22     properties:
23       name: { get_param: Internal1_net_name }
24       forwarding_mode: { get_param: Internal1_forwarding_mode }
25       shared: { get_param: Internal1_shared }
26   Internal2-net:
27     type: OS::Contrail::VirtualNetwork
28     properties:
29       name: { get_param: Internal1_net_name }
30       forwarding_mode: { get_param: Internal1_forwarding_mode }
31       shared: { get_param: Internal1_shared }
32
33   test_nested0:
34     type: OCS-fw.yml
35     properties:
36       network_param1: { get_resource: Internal1-net}
37       network_param2: { get_resource: Internal2-net}