blob: 1df0c71926ae24eb826d0026d655c309b936a633 [file] [log] [blame]
Kang Xiee9f6a12018-05-10 14:50:39 -04001heat_template_version: 2013-05-23
2description: A simple Neutron network
3parameters:
4 network_name:
5 type: string
6 description: Name of the Neutron Network
7 default: ONAP-NW1
8 shared:
Bartek Grzybowski3161bfe2020-02-19 13:37:31 +01009 type: boolean
10 description: Shared amongst tenants
11 default: False
Kang Xiee9f6a12018-05-10 14:50:39 -040012outputs:
13 network_id:
14 description: Openstack network identifier
15 value: { get_resource: network }
16resources:
17 network:
18 type: OS::Neutron::Net
19 properties:
20 name: { get_param: network_name }
21 shared: { get_param: shared }