heat_template_version: 2014-10-16 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}