summaryrefslogtreecommitdiffstats
path: root/robot/assets/templates/vcpeutils/simple_neutron_heat.yaml
diff options
context:
space:
mode:
authorBrian Freeman <bf1936@att.com>2019-04-16 14:24:29 -0500
committerBrian Freeman <bf1936@att.com>2019-04-16 14:24:38 -0500
commite12b626ab2141e59d74314dc24713b295dac9d53 (patch)
tree2c9a5467ad28f50a7c85e255dcc4bb5fb604f4c5 /robot/assets/templates/vcpeutils/simple_neutron_heat.yaml
parent4230caee7aaa5d34e9fb84f61d9f116f7224cc6a (diff)
Tie in SoUtils for direct to SO
Issue-ID: INT-1028 Change-Id: I263381efc078cf154262a52627a10e2c4b265ec9 Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'robot/assets/templates/vcpeutils/simple_neutron_heat.yaml')
-rw-r--r--robot/assets/templates/vcpeutils/simple_neutron_heat.yaml21
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 }