Skip to content
Barry King edited this page Jul 28, 2023 · 2 revisions

Welcome to the puppet-puppetboard wiki!

Current Issues

  • as of puppetboard 5.0.0, a SECRET_KEY has to be set manually. Do so like so:
class { 'puppetboard':
    extra_settings => {
      # generate your key like so:
      # python3 -c 'import secrets; print(secrets.token_hex())'
      # NOTE: Double-quotes needed below to ensure string gets quotes correctly in settings.py 
      'SECRET_KEY' => "'YOURKEYHERE'"    
    },
  }
Clone this wiki locally