ddca77553d
Update pending templates to use the release name alias. Change-Id: I39f9be212d3e9f3bec6f45d9757eca7a3b0ccc06
23 lines
485 B
YAML
23 lines
485 B
YAML
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-centos.sh}
|
|
|
|
DeployedServerBootstrapDeployment:
|
|
type: OS::Heat::SoftwareDeployment
|
|
properties:
|
|
config: {get_resource: DeployedServerBootstrapConfig}
|
|
server: {get_param: server}
|