Merge "puppet: tidy up the Nova glance API server config"
[apex-tripleo-heat-templates.git] / puppet / bootstrap-config.yaml
1 heat_template_version: 2014-10-16
2 description: 'Bootstrap Config Puppet'
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         hiera:
15           datafiles:
16             bootstrap_node:
17               mapped_data:
18                 bootstrap_nodeid: {get_param: bootstrap_nodeid}
19
20 outputs:
21   config_id:
22     description: The ID of the BootstrapNodeConfigImpl resource.
23     value:
24       {get_resource: BootstrapNodeConfigImpl}