diff options
Diffstat (limited to 'robot/assets/templates/vcpeutils/simple_neutron_heat.yaml')
-rw-r--r-- | robot/assets/templates/vcpeutils/simple_neutron_heat.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/robot/assets/templates/vcpeutils/simple_neutron_heat.yaml b/robot/assets/templates/vcpeutils/simple_neutron_heat.yaml new file mode 100644 index 00000000..f64248be --- /dev/null +++ b/robot/assets/templates/vcpeutils/simple_neutron_heat.yaml @@ -0,0 +1,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 } |