-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
transport tls: Add ensure_fips option to ensure FIPS compliant mode #4720
Merged
Conversation
This file contains 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
It seems that bundled OpenSSL gem provides
|
daipom
reviewed
Nov 28, 2024
Watson1978
reviewed
Nov 28, 2024
It will stop:
|
ensure_fips option checks whether FIPS mode is enabled by OpenSSL side. If FIPS is not enabled in OpenSSL side, it raise an error when ensure_fips true. NOTE: If FIPS mode is enabled, ensure_fips does nothing. Closes: fluent#3121 Signed-off-by: Kentaro Hayashi <[email protected]>
daipom
approved these changes
Nov 28, 2024
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.
LGTM. Thanks!
daipom
changed the title
Ensure FIPS compliant mode by ensure_fips option
transport tls: add ensure_fips option to Ensure FIPS compliant mode
Nov 28, 2024
daipom
changed the title
transport tls: add ensure_fips option to Ensure FIPS compliant mode
transport tls: Add ensure_fips option to ensure FIPS compliant mode
Nov 28, 2024
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.
Which issue(s) this PR fixes:
Fixes #3121
What this PR does / why we need it:
ensure_fips option checks whether FIPS mode is
enabled by OpenSSL side.
If FIPS is not enabled in OpenSSL side, it raise an error (blocking launching fluentd) when ensure_fips is true.
NOTE: If FIPS mode is enabled by default, ensure_fips does nothing.
Docs Changes:
Document ensure_fips option in transport-section.
https://docs.fluentd.org/configuration/transport-section#tls-setting
Release Note:
The same as the title.