Merge "Ensures mongodb configuration only happens if mongodb is needed"
[apex-tripleo-heat-templates.git] / puppet / controller-config.yaml
1 heat_template_version: 2015-04-30
2
3 description: >
4   A software config which runs manifests/overcloud_controller.pp
5
6 resources:
7
8   ControllerPuppetConfigImpl:
9     type: OS::Heat::SoftwareConfig
10     properties:
11       group: puppet
12       options:
13         enable_hiera: True
14         enable_facter: False
15       outputs:
16       - name: result
17       config:
18         get_file: manifests/overcloud_controller.pp
19
20 outputs:
21   OS::stack_id:
22     description: The software config which runs overcloud_controller.pp
23     value: {get_resource: ControllerPuppetConfigImpl}