push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / contrail2serviceinstance / sharedNetworkNested / inputfiles / main.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
27   test_nested:
28     type: OCS-fw.yml
29     properties:
30       network_param: { get_resource: Internal1-net}