3d88dd9ce0aef6690756b4a67e779d46227e4dac
[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   ExternalIpSubnet:
9     default: ''
10     description: IP address/subnet on the external network
11     type: string
12   InternalApiIpSubnet:
13     default: ''
14     description: IP address/subnet on the internal API network
15     type: string
16   StorageIpSubnet:
17     default: ''
18     description: IP address/subnet on the storage network
19     type: string
20   StorageMgmtIpSubnet:
21     default: ''
22     description: IP address/subnet on the storage mgmt network
23     type: string
24   TenantIpSubnet:
25     default: ''
26     description: IP address/subnet on the tenant network
27     type: string
28
29 resources:
30   OsNetConfigImpl:
31     type: OS::Heat::StructuredConfig
32     properties:
33       group: os-apply-config
34       config:
35
36 outputs:
37   OS::stack_id:
38     description: The OsNetConfigImpl resource.
39     value: {get_resource: OsNetConfigImpl}