push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / test / resources / mock / ep-jsa-si / ep-jsa_net.yaml
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   jsa_cidr:
11     type: string
12     description: CIDR of jsa log network
13
14 resources:
15   jsa_net:
16     type: OS::Neutron::Net
17     properties:
18       name: {get_param: jsa_net_name}
19       shared: True
20
21   jsa_subnet:
22     type: OS::Neutron::Subnet
23     properties:
24       network_id: {get_resource: jsa_net}
25       cidr: {get_param: jsa_cidr}
26