Consider credentials as sensitive data#252
Merged
bradgessler merged 1 commit intosuperfly:mainfrom Aug 11, 2022
Merged
Conversation
Credentials often include sensitive data, so it would be better to not suggest putting them in `fly.toml`. This commit also changes the `fly.toml` example variable from `LOCALE` to `RAILS_LOG_TO_STDOUT`, to avoid implying that `LOCALE` has any effect by default, such as setting `I18n.default_locale`. (Note that `RAILS_LOG_TO_STDOUT` only [has to be a nonblank string][1], so the example value used here is `x`, to avoid a boolean connotation.) [1]: https://github.com/rails/rails/blob/v7.0.3/railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt#L97
kcmartin
added a commit
that referenced
this pull request
Apr 24, 2026
* Expand integrating flyctl guide Full replacement of the thin page with token types and least-privilege guidance, GitHub Actions patterns, jq examples, build modes, and generic CI setup. Closes #252 (docs-tracking). * incorporate reviewer feedback * update nav to match doc title * remove triple dashes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Credentials often include sensitive data, so it would be better to not suggest putting them in
fly.toml.This commit also changes the
fly.tomlexample variable fromLOCALEtoRAILS_LOG_TO_STDOUT, to avoid implying thatLOCALEhas any effect by default, such as settingI18n.default_locale. (Note thatRAILS_LOG_TO_STDOUTonly has to be a nonblank string, so the example value used here isx, to avoid a boolean connotation.)