config.pp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # == Class: nova::config
  2. #
  3. # This class is used to manage arbitrary Nova configurations.
  4. #
  5. # === Parameters
  6. #
  7. # [*nova_config*]
  8. # (optional) Allow configuration of arbitrary Nova configurations.
  9. # The value is an hash of nova_config resources. Example:
  10. # { 'DEFAULT/foo' => { value => 'fooValue'},
  11. # 'DEFAULT/bar' => { value => 'barValue'}
  12. # }
  13. # In yaml format, Example:
  14. # nova_config:
  15. # DEFAULT/foo:
  16. # value: fooValue
  17. # DEFAULT/bar:
  18. # value: barValue
  19. #
  20. # NOTE: The configuration MUST NOT be already handled by this module
  21. # or Puppet catalog compilation will fail with duplicate resources.
  22. #
  23. # [*nova_paste_api_ini*]
  24. # (optional) Allow configuration of arbitrary Nova paste api configurations.
  25. # The value is an hash of nova_paste_api_ini resources. Example:
  26. # { 'DEFAULT/foo' => { value => 'fooValue'},
  27. # 'DEFAULT/bar' => { value => 'barValue'}
  28. # }
  29. #
  30. class nova::config (
  31. $nova_config = {},
  32. $nova_paste_api_ini = {},
  33. ) {
  34. include ::nova::deps
  35. validate_hash($nova_config)
  36. validate_hash($nova_paste_api_ini)
  37. create_resources('nova_config', $nova_config)
  38. create_resources('nova_paste_api_ini', $nova_paste_api_ini)
  39. }