Forge Home

liquidtemplates

Puppet function for processing Liquid Templates

11,221 downloads

7,910 latest version

4.6 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.4 (latest)
  • 0.0.3
  • 0.0.2
  • 0.0.1
released Nov 27th 2015
This version is compatible with:
  • RedHat, Ubuntu, Debian, Fedora, CentOS

Start using this module

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

Add this module to your Puppetfile:

mod 'deanwilson-liquidtemplates', '0.0.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add deanwilson-liquidtemplates
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install deanwilson-liquidtemplates --version 0.0.4

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

Documentation

deanwilson/liquidtemplates — version 0.0.4 Nov 27th 2015

Liquid Templates in Puppet Function

Liquid is a 'Ruby library for rendering safe templates which cannot affect the security of the server they are rendered on.' This function allows you to write your templates using Liquid -

$ cat << 'EOC' > liquidtest/templates/test.liquid
SELinux is {{ selinux_config_mode | upcase }} on {{ fqdn }}
EOC

And call them from your puppet modules -

class liquidtest {

  file { '/tmp/liquidtest':
    ensure  => 'file',
    content => liquid_template('liquidtest/test.liquid'),
  }

}

More details can be found in the Liquid Templates in Puppet blog post.

Note: This function requires the liquid gem to be available on the puppetmaster. Which you are managing via puppet, right?

License

GPL v2.0 - Dean Wilson