2016-12-23 11:43:39 +00:00
|
|
|
heat_template_version: ocata
|
2015-02-19 08:41:47 -08:00
|
|
|
description: 'Bootstrap Config'
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
bootstrap_nodeid:
|
|
|
|
type: string
|
2015-04-02 09:42:08 +02:00
|
|
|
bootstrap_nodeid_ip:
|
|
|
|
type: string
|
2015-02-19 08:41:47 -08:00
|
|
|
|
|
|
|
resources:
|
|
|
|
|
|
|
|
BootstrapNodeConfigImpl:
|
|
|
|
type: OS::Heat::StructuredConfig
|
|
|
|
properties:
|
2015-05-14 07:05:34 -04:00
|
|
|
group: os-apply-config
|
2015-02-19 08:41:47 -08:00
|
|
|
config:
|
|
|
|
bootstrap_host:
|
|
|
|
bootstrap_nodeid: {get_param: bootstrap_nodeid}
|
2015-04-02 09:42:08 +02:00
|
|
|
bootstrap_nodeid_ip: {get_param: bootstrap_nodeid_ip}
|
2015-02-19 08:41:47 -08:00
|
|
|
|
|
|
|
outputs:
|
|
|
|
config_id:
|
|
|
|
description: The ID of the BootstrapNodeConfigImpl resource.
|
|
|
|
value:
|
|
|
|
{get_resource: BootstrapNodeConfigImpl}
|