0a0e2ee629
Master is now the development branch for pike changing the release alias name. Change-Id: I938e4a983e361aefcaa0bd9a4226c296c5823127
26 lines
577 B
YAML
26 lines
577 B
YAML
heat_template_version: pike
|
|
description: 'Bootstrap Config'
|
|
|
|
parameters:
|
|
bootstrap_nodeid:
|
|
type: string
|
|
bootstrap_nodeid_ip:
|
|
type: string
|
|
|
|
resources:
|
|
|
|
BootstrapNodeConfigImpl:
|
|
type: OS::Heat::StructuredConfig
|
|
properties:
|
|
group: os-apply-config
|
|
config:
|
|
bootstrap_host:
|
|
bootstrap_nodeid: {get_param: bootstrap_nodeid}
|
|
bootstrap_nodeid_ip: {get_param: bootstrap_nodeid_ip}
|
|
|
|
outputs:
|
|
config_id:
|
|
description: The ID of the BootstrapNodeConfigImpl resource.
|
|
value:
|
|
{get_resource: BootstrapNodeConfigImpl}
|