2018-03-05 19:28:35 +01:00
|
|
|
heat_template_version: rocky
|
2017-01-26 15:06:46 -05:00
|
|
|
|
|
|
|
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:
|
2017-07-17 12:00:35 -04:00
|
|
|
name: DeployedServerBootstrapDeployment
|
2017-01-26 15:06:46 -05:00
|
|
|
config: {get_resource: DeployedServerBootstrapConfig}
|
|
|
|
server: {get_param: server}
|