Advertisement
Guest User

Untitled

a guest
Jun 14th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. heat_template_version: 2014-10-16
  2.  
  3. description: 'Run Puppet extra configuration for testing'
  4.  
  5. parameters:
  6. servers:
  7. type: json
  8.  
  9. resources:
  10. ExtraPuppetConfig:
  11. type: OS::Heat::SoftwareConfig
  12. properties:
  13. config: {get_file: extra_compute.pp}
  14. group: puppet
  15. options:
  16. enable_hiera: True
  17. enable_facter: False
  18.  
  19. ExtraPuppetDeployments:
  20. type: OS::Heat::SoftwareDeployments
  21. properties:
  22. config: {get_resource: ExtraPuppetConfig}
  23. servers: {get_param: servers}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement