blob: f37aae9330e03d4d6e1caa3b260ca1e382ea04d9 [file] [log] [blame]
Brian Freemane12b6262019-04-16 14:24:29 -05001heat_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:
9 type: boolean
10 description: Shared amongst tenants
11 default: False
12outputs:
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 }
DR695H554b3b32019-07-18 18:28:30 -040021 shared: { get_param: shared }