-
Notifications
You must be signed in to change notification settings - Fork 1
050 #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
050 #15
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| # Application | ||
| PORT=3000 | ||
| LOG_LEVEL=info | ||
|
|
||
| # Bolt command whitelist | ||
| BOLT_COMMAND_WHITELIST_ALLOW_ALL=false | ||
| BOLT_COMMAND_WHITELIST=["ls","pwd","whoami","uptime"] | ||
| BOLT_EXECUTION_TIMEOUT=300000 | ||
|
|
||
| # PuppetDB integration (optional) | ||
| PUPPETDB_ENABLED=false | ||
| PUPPETDB_SERVER_URL= | ||
| PUPPETDB_PORT=8081 | ||
| PUPPETDB_TOKEN= | ||
| PUPPETDB_SSL_ENABLED=false | ||
| PUPPETDB_SSL_CA= | ||
| PUPPETDB_SSL_CERT= | ||
| PUPPETDB_SSL_KEY= | ||
|
|
||
| # Puppetserver integration (optional) | ||
| PUPPETSERVER_ENABLED=false | ||
| PUPPETSERVER_SERVER_URL= | ||
| PUPPETSERVER_PORT=8140 | ||
| PUPPETSERVER_TOKEN= | ||
| PUPPETSERVER_SSL_ENABLED=false | ||
| PUPPETSERVER_SSL_CA= | ||
| PUPPETSERVER_SSL_CERT= | ||
| PUPPETSERVER_SSL_KEY= | ||
|
|
||
| # Hiera integration (optional) | ||
| HIERA_ENABLED=false | ||
| HIERA_CONTROL_REPO_PATH= | ||
| HIERA_CONFIG_PATH=hiera.yaml | ||
|
Comment on lines
+1
to
+33
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The addition of
.env.exampleis a good practice, but it should be mentioned in the CHANGELOG under "Added" section for version 0.5.0, as this is a new file that helps users configure the application. This improves documentation and onboarding for new users.