Puppet Class: st2::kvs

Defined in:
manifests/kvs.pp

Summary

Automatically loads Key/Value pairs for StackStorm DB from Hiera

Overview

Examples:

Key/value pairs defined in Hiera

st2::kvs:
  keyname:
    value: 'blah'
  mysupercoolkey:
    value: 'xyz123'

See Also:

  • puppet_classes::st2st2::kv


12
13
14
15
# File 'manifests/kvs.pp', line 12

class st2::kvs {
  $_kvs = hiera_hash('st2::kvs', {})
  create_resources('st2::kv', $_kvs)
}