Merge "Reuse the undercloud service passwords as db passwords."
[apex-tripleo-heat-templates.git] / bootstrap-config.yaml
1 heat_template_version: 2015-04-30
2 description: 'Bootstrap Config'
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         bootstrap_host:
17           bootstrap_nodeid: {get_param: bootstrap_nodeid}
18           bootstrap_nodeid_ip: {get_param: bootstrap_nodeid_ip}
19
20 outputs:
21   config_id:
22     description: The ID of the BootstrapNodeConfigImpl resource.
23     value:
24       {get_resource: BootstrapNodeConfigImpl}