Skip to content
Merged
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
8 changes: 4 additions & 4 deletions plugins/in_forward/fw.c
Original file line number Diff line number Diff line change
Expand Up @@ -481,12 +481,12 @@ static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_STR, "shared_key", NULL,
0, FLB_TRUE, offsetof(struct flb_in_fw_config, shared_key),
"Shared key for authentication"
"Shared key for secure forward authentication."
},
{
FLB_CONFIG_MAP_STR, "self_hostname", NULL,
0, FLB_FALSE, 0,
"Hostname"
"Hostname used in the handshake process for secure forward authentication."
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

},
{
FLB_CONFIG_MAP_STR, "security.users", NULL,
Expand All @@ -501,7 +501,7 @@ static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_STR, "unix_perm", (char *)NULL,
0, FLB_TRUE, offsetof(struct flb_in_fw_config, unix_perm_str),
"Set the permissions for the UNIX socket"
"Set the permissions for the UNIX socket."
},
{
FLB_CONFIG_MAP_SIZE, "buffer_chunk_size", FLB_IN_FW_CHUNK_SIZE,
Expand All @@ -516,7 +516,7 @@ static struct flb_config_map config_map[] = {
{
FLB_CONFIG_MAP_BOOL, "empty_shared_key", "false",
0, FLB_TRUE, offsetof(struct flb_in_fw_config, empty_shared_key),
"Set an empty shared key for authentication"
"Enable an empty string as the shared key for authentication."
},
{0}
};
Expand Down
Loading