aboutsummaryrefslogtreecommitdiffstats
path: root/test/vcpe/preload_templates/simple_neutron_heat.yaml
blob: f64248be81ae0019b01f90afb571ea3c7ed20423 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
heat_template_version: 2013-05-23
description: A simple Neutron network
parameters:
  network_name:
    type: string
    description: Name of the Neutron Network
    default: ONAP-NW1
  shared:
     type: boolean
     description: Shared amongst tenants
     default: False
outputs:
  network_id:
    description: Openstack network identifier
    value: { get_resource: network }
resources:
  network:
    type: OS::Neutron::Net
    properties:
      name: { get_param: network_name }
      shared: { get_param: shared }