Skip to content
This repository was archived by the owner on May 18, 2018. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 390 Bytes

File metadata and controls

20 lines (15 loc) · 390 Bytes

Herokuconfig

Puppet module that reads config variables from Heroku apps and writes them a file

Examples

Single file download without credentials

herokuconfig { 'my-heroku-app':
  heroku_api_key => "api-key",
  heroku_app_name => 'my-heroku-app',
  path => '/var/www/.env',
}

This will populate the .env file with following:

VAR1=VALUE1
VAR2=VALUE2