Merge "Add redis ordering with ceilometer-central"
[apex-tripleo-heat-templates.git] / net-config-noop.yaml
1 heat_template_version: 2015-04-30
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
33 resources:
34   OsNetConfigImpl:
35     type: OS::Heat::StructuredConfig
36     properties:
37       group: os-apply-config
38       config:
39
40 outputs:
41   OS::stack_id:
42     description: The OsNetConfigImpl resource.
43     value: {get_resource: OsNetConfigImpl}