blob: 0a2db2b2bd1ca3070c7e54b204c74c2417517466 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001heat_template_version: 2013-05-23
2
3description: >
4 HOT template that creates one COR network (direct).
5
6resources:
7 cor_direct_net:
8 type: file:///my_test.yaml
9 properties:
10 name: { get_param: cor_direct_net_name }
11 route_targets: [ get_param: cor_direct_net_RT ]
12
13 cor_direct_ip_subnet:
14 type: OS::Neutron::Subnet
15 properties:
16 network_id: { get_resource: cor_direct_net }
17 cidr: {get_param: cor_direct_net_cidr}
18 gateway_ip: { get_param: cor_direct_net_gateway }