Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Check AWS key on start. Default is true.

## proxy_uri

URI of proxy environment.
URI of proxy environment. The value is masked in the configuration dump, so credentials embedded in the URI are not written to the log.

## \<sqs\> section

Expand Down
2 changes: 1 addition & 1 deletion docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ Check AWS key on start. Default is true.

## proxy_uri

uri of proxy environment.
uri of proxy environment. The value is masked in the configuration dump, so credentials embedded in the URI are not written to the log.

## path

Expand Down
2 changes: 1 addition & 1 deletion lib/fluent/plugin/in_s3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def initialize
desc "Check AWS key on start"
config_param :check_apikey_on_start, :bool, default: true
desc "URI of proxy environment"
config_param :proxy_uri, :string, default: nil
config_param :proxy_uri, :string, default: nil, secret: true
desc "Optional RegEx to match incoming messages"
config_param :match_regexp, :regexp, default: nil

Expand Down
2 changes: 1 addition & 1 deletion lib/fluent/plugin/out_s3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def initialize
desc "Check AWS key on start"
config_param :check_apikey_on_start, :bool, default: true
desc "URI of proxy environment"
config_param :proxy_uri, :string, default: nil
config_param :proxy_uri, :string, default: nil, secret: true
desc "Use S3 reduced redundancy storage for 33% cheaper pricing. Deprecated. Use storage_class instead"
config_param :reduced_redundancy, :bool, default: false, deprecated: "Use storage_class parameter instead."
desc "The type of storage to use for the object(STANDARD,REDUCED_REDUNDANCY,STANDARD_IA)"
Expand Down