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.
22 lines
483 B
22 lines
483 B
heat_template_version: ocata |
|
|
|
description: 'Deployed Server Bootstrap Config' |
|
|
|
parameters: |
|
|
|
server: |
|
type: string |
|
|
|
resources: |
|
|
|
DeployedServerBootstrapConfig: |
|
type: OS::Heat::SoftwareConfig |
|
properties: |
|
group: script |
|
config: {get_file: deployed-server-bootstrap-rhel.sh} |
|
|
|
DeployedServerBootstrapDeployment: |
|
type: OS::Heat::SoftwareDeployment |
|
properties: |
|
config: {get_resource: DeployedServerBootstrapConfig} |
|
server: {get_param: server}
|
|
|