tripleo-heat-templates/deployed-server/deployed-server-bootstrap-centos.yaml
Carlos Camacho ddca77553d Bump missing template names to ocata
Update pending templates to use the release name alias.

Change-Id: I39f9be212d3e9f3bec6f45d9757eca7a3b0ccc06
2017-01-17 17:04:49 +01:00

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}