You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
579 B
25 lines
579 B
heat_template_version: queens |
|
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}
|
|
|