aboutsummaryrefslogtreecommitdiffstats
path: root/deployed-server/deployed-server-bootstrap-rhel.yaml
blob: a90185153f3707ebdc882b31db3a906bec386391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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:
      config: {get_resource: DeployedServerBootstrapConfig}
      server: {get_param: server}