1 heat_template_version: 2014-10-16
7 # the defaults here work for static IP assignment (IPAM) only
9 default: '172.16.0.0/24'
10 description: Cidr for the tenant network.
13 default: {'provider:physical_network': 'tenant', 'provider:network_type': 'flat'}
14 description: Value specs for the tenant network.
16 TenantNetAdminStateUp:
18 description: This admin state of of the network.
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 tenant network.
33 default: tenant_subnet
34 description: The name of the tenant subnet in Neutron.
39 type: OS::Neutron::Net
41 admin_state_up: {get_param: TenantNetAdminStateUp}
42 name: {get_param: TenantNetName}
43 shared: {get_param: TenantNetShared}
44 value_specs: {get_param: TenantNetValueSpecs}
47 type: OS::Neutron::Subnet
49 cidr: {get_param: TenantNetCidr}
50 enable_dhcp: {get_param: TenantNetEnableDHCP}
51 name: {get_param: TenantSubnetName}
52 network: {get_resource: TenantNetwork}
56 description: Neutron tenant network
57 value: {get_resource: TenantNetwork}