1 heat_template_version: 2014-10-16
4 Storage management network. Storage replication, etc.
7 # the defaults here work for static IP assignment (IPAM) only
9 default: '172.16.3.0/24'
10 description: Cidr for the storage management network.
12 StorageMgmtNetValueSpecs:
13 default: {'provider:physical_network': 'storage_mgmt', 'provider:network_type': 'flat'}
14 description: Value specs for the storage_mgmt network.
16 StorageMgmtNetAdminStateUp:
18 description: This admin state of of the network.
20 StorageMgmtNetEnableDHCP:
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 Storage management network.
32 StorageMgmtSubnetName:
33 default: storage_mgmt_subnet
34 description: The name of the Storage management subnet in Neutron.
39 type: OS::Neutron::Net
41 admin_state_up: {get_param: StorageMgmtNetAdminStateUp}
42 name: {get_param: StorageMgmtNetName}
43 shared: {get_param: StorageMgmtNetShared}
44 value_specs: {get_param: StorageMgmtNetValueSpecs}
47 type: OS::Neutron::Subnet
49 cidr: {get_param: StorageMgmtNetCidr}
50 enable_dhcp: {get_param: StorageMgmtNetEnableDHCP}
51 name: {get_param: StorageMgmtSubnetName}
52 network: {get_resource: StorageMgmtNetwork}
56 description: Neutron storage management network
57 value: {get_resource: StorageMgmtNetwork}