Change flat network name for nosdn fdio scenario
[apex-tripleo-heat-templates.git] / net-config-noop.yaml
1 heat_template_version: pike
2
3 description: >
4   Software Config to no-op for os-net-config. Using this will allow you
5   to use the parameter driven (init-neutron-ovs) configuration instead.
6
7 parameters:
8   ControlPlaneIp:
9     default: ''
10     description: IP address/subnet on the ctlplane network
11     type: string
12   ExternalIpSubnet:
13     default: ''
14     description: IP address/subnet on the external network
15     type: string
16   InternalApiIpSubnet:
17     default: ''
18     description: IP address/subnet on the internal_api network
19     type: string
20   StorageIpSubnet:
21     default: ''
22     description: IP address/subnet on the storage network
23     type: string
24   StorageMgmtIpSubnet:
25     default: ''
26     description: IP address/subnet on the storage_mgmt network
27     type: string
28   TenantIpSubnet:
29     default: ''
30     description: IP address/subnet on the tenant network
31     type: string
32   ManagementIpSubnet:
33     default: ''
34     description: IP address/subnet on the management network
35     type: string
36
37 resources:
38   OsNetConfigImpl:
39     type: OS::Heat::StructuredConfig
40     properties:
41       group: apply-config
42       config: {}
43
44 outputs:
45   OS::stack_id:
46     description: The OsNetConfigImpl resource.
47     value: {get_resource: OsNetConfigImpl}