c1a4f8d810
To be consistent with all other SoftwareDeployment's in tripleo-heat-templates, this sets the name property on the deployments where it was missing. Change-Id: I8bc062d2af93acead240bd5e473ea385b2bf6cf2
24 lines
528 B
YAML
24 lines
528 B
YAML
heat_template_version: pike
|
|
|
|
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:
|
|
name: DeployedServerBootstrapDeployment
|
|
config: {get_resource: DeployedServerBootstrapConfig}
|
|
server: {get_param: server}
|