Update the template_version alias for all the templates to pike.
[apex-tripleo-heat-templates.git] / deployed-server / deployed-server-bootstrap-centos.yaml
1 heat_template_version: pike
2
3 description: 'Deployed Server Bootstrap Config'
4
5 parameters:
6
7   server:
8     type: string
9
10 resources:
11
12   DeployedServerBootstrapConfig:
13     type: OS::Heat::SoftwareConfig
14     properties:
15       group: script
16       config: {get_file: deployed-server-bootstrap-centos.sh}
17
18   DeployedServerBootstrapDeployment:
19     type: OS::Heat::SoftwareDeployment
20     properties:
21       config: {get_resource: DeployedServerBootstrapConfig}
22       server: {get_param: server}