2017-09-04 08:31:57 +02:00
|
|
|
heat_template_version: queens
|
2016-12-15 13:26:38 -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-centos.sh}
|
|
|
|
|
|
|
|
DeployedServerBootstrapDeployment:
|
|
|
|
type: OS::Heat::SoftwareDeployment
|
|
|
|
properties:
|
2017-07-17 12:00:35 -04:00
|
|
|
name: DeployedServerBootstrapDeployment
|
2016-12-15 13:26:38 -05:00
|
|
|
config: {get_resource: DeployedServerBootstrapConfig}
|
|
|
|
server: {get_param: server}
|