push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / services / heattotosca / porttonetconnection / shared / inputfiles / main.yml
1 heat_template_version: 2013-05-23
2
3 description: >
4   Version 2.0 02-09-2016 (Authors: John Doe, user PROD)
5
6 parameters:
7   jsa_net_name:
8     type: string
9     description: network name of jsa log network
10
11   jsa_name:
12     type: string
13
14 resources:
15   test_net1:
16     type: OS::Neutron::Net
17     properties:
18       name: {get_param: jsa_net_name}
19       shared: True
20
21   test_net2:
22     type: OS::Neutron::Net
23     properties:
24       name: {get_param: jsa_net_name}
25       shared: True
26
27   test_nova:
28     type: OS::Nova::Server
29     properties:
30       name: {get_param: jsa_name}
31       image: image
32
33 outputs:
34     shared_network_id1:
35       value: {get_resource: test_net1}
36     shared_network_id2:
37       value: {get_resource: test_net2}
38     shared_test_nova:
39       value: {get_resource: test_nova}