Merge "Added method to OpenStackHeatStack to return OpenStackRouter objects."
[snaps.git] / snaps / openstack / tests / heat / router_heat_template.yaml
1 ##############################################################################
2 # Copyright (c) 2017 Cable Television Laboratories, Inc. ("CableLabs")
3 #                    and others.  All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at:
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 ##############################################################################
17 heat_template_version: 2015-04-30
18
19 description: >
20   Sample template with two VMs instantiated against different images and
21   flavors on the same network and the first one has a floating IP
22
23 parameters:
24   net_name:
25     type: string
26     label: Test network name
27     description: The name of the stack's network
28     default: test_net
29   subnet_name:
30     type: string
31     label: Test subnet name
32     description: The name of the stack's subnet
33     default: test_subnet
34   router_name:
35     type: string
36     label: Test router name
37     description: The name of the stack's router
38     default: mgmt_router
39   external_net_name:
40     type: string
41     description: Name of the external network which management network will connect to
42     default: external
43
44 resources:
45   network:
46     type: OS::Neutron::Net
47     properties:
48       name: { get_param: net_name }
49
50   subnet:
51     type: OS::Neutron::Subnet
52     properties:
53       name: { get_param: subnet_name }
54       ip_version: 4
55       cidr: 10.1.2.0/24
56       network: { get_resource: network }
57
58   management_router:
59     type: OS::Neutron::Router
60     properties:
61       name: { get_param: router_name }
62       external_gateway_info:
63         network: { get_param: external_net_name }
64
65   management_router_interface:
66     type: OS::Neutron::RouterInterface
67     properties:
68       router: { get_resource: management_router }
69       subnet: { get_resource: subnet }