ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | heat_template_version: 2013-05-23 |
| 2 | |
| 3 | description: > |
| 4 | HOT template that creates one COR network (direct). |
| 5 | |
| 6 | resources: |
| 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 } |