Forge Home

8,865 downloads

8,865 latest version

3.8 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.1 (latest)
released Feb 8th 2013

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'sSpeaker-yaml2catalog', '0.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add sSpeaker-yaml2catalog
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install sSpeaker-yaml2catalog --version 0.0.1

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: yaml

Documentation

sSpeaker/yaml2catalog — version 0.0.1 Feb 8th 2013

yaml2catalog

This module provides "yaml2catalog" function. That function allows writing simple puppet manifests in yaml format. "create_resources" was taken as a base.

At this point it support:

  • Resources
  • Variables
  • Selectors
  • Functions

Usage

Just call it in your manifest.

yaml2catalog('/tmp/test.yaml')

Yaml example

---
variables: #Special sections for declaring Puppet variables
    local: #Declaring local variables
        user      : root
        file_mode : '0777'
        service_name ? osfamily: #Selector example
            RedHat: apache22
            Debian: httpd
        package_name ? osfamily:
            RedHat  : apache22
            Debian  : httpd
            default : apache22 #Default will be asigned if "osfamily" is not 'RedHat' or 'Debian'
package:
      httpd:
          ensure  : present
service:
    $service_name: # Variable
        ensure  : running
        require : 'File[/etc/httpd/httpd.conf]'
file:
    global: #Global settings for all resources of this type
        ensure : present
        owner  : $user # Variable
        mode   : $file_mod
    /etc/httpd/httpd.conf:
        content: %template(['httpd.conf.erb']) # Function.
    /tmp/1: &anchor #Support yaml achor syntax
        ensure: directory
    /tmp/2: *anchor