1 heat_template_version: 2015-04-30
4 External network. Public traffic, Neutron l3router for floating IPs/SNAT, etc.
7 # the defaults here work for static IP assignment (IPAM) only
10 description: Cidr for the external network.
12 ExternalNetValueSpecs:
13 default: {'provider:physical_network': 'external', 'provider:network_type': 'flat'}
14 description: Value specs for the external network.
16 ExternalNetAdminStateUp:
18 description: This admin state of of the network.
20 ExternalNetEnableDHCP:
22 description: Whether to enable DHCP on the associated subnet.
26 description: Whether this network is shared across all tenants.
30 description: The name of the external network.
33 default: external_subnet
34 description: The name of the external subnet in Neutron.
40 type: OS::Neutron::Net
42 admin_state_up: {get_param: ExternalNetAdminStateUp}
43 name: {get_param: ExternalNetName}
44 shared: {get_param: ExternalNetShared}
45 value_specs: {get_param: ExternalNetValueSpecs}
48 type: OS::Neutron::Subnet
50 cidr: {get_param: ExternalNetCidr}
51 enable_dhcp: {get_param: ExternalNetEnableDHCP}
52 name: {get_param: ExternalSubnetName}
53 network: {get_resource: ExternalNetwork}
57 description: Neutron external network
58 value: {get_resource: ExternalNetwork}