Merge "Map Neutron services to isolated networks"
[apex-tripleo-heat-templates.git] / puppet / bootstrap-config.yaml
1 heat_template_version: 2015-04-30
2 description: 'Bootstrap Config Puppet'
3
4 parameters:
5   bootstrap_nodeid:
6     type: string
7   bootstrap_nodeid_ip:
8     type: string
9
10 resources:
11
12   BootstrapNodeConfigImpl:
13     type: OS::Heat::StructuredConfig
14     properties:
15       config:
16         hiera:
17           datafiles:
18             bootstrap_node:
19               mapped_data:
20                 bootstrap_nodeid: {get_param: bootstrap_nodeid}
21                 bootstrap_nodeid_ip: {get_param: bootstrap_nodeid_ip}
22
23 outputs:
24   config_id:
25     description: The ID of the BootstrapNodeConfigImpl resource.
26     value:
27       {get_resource: BootstrapNodeConfigImpl}