Split out BootstrapNode SoftwareConfig
[apex-tripleo-heat-templates.git] / bootstrap-config.yaml
1 heat_template_version: 2014-10-16
2 description: 'Bootstrap Config'
3
4 parameters:
5   bootstrap_nodeid:
6     type: string
7
8 resources:
9
10   BootstrapNodeConfigImpl:
11     type: OS::Heat::StructuredConfig
12     properties:
13       config:
14         bootstrap_host:
15           bootstrap_nodeid: {get_param: bootstrap_nodeid}
16
17 outputs:
18   config_id:
19     description: The ID of the BootstrapNodeConfigImpl resource.
20     value:
21       {get_resource: BootstrapNodeConfigImpl}