Skip to content
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

chore(dev): fix markdown lint failures #22219

Merged
merged 1 commit into from
Jan 16, 2025
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
12 changes: 6 additions & 6 deletions rfcs/2020-03-06-1999-api-extensions-for-lua-transform.md
Original file line number Diff line number Diff line change
@@ -471,12 +471,12 @@ Here `event` is an encoded event to be produced by the transform, and `lane` is

> An emitting function is called from a transform component called `example_transform` with `lane` parameter set to `example_lane`. Then the downstream `console` sink have to be defined as the following to be able to read the emitted event:
>
> ```toml
> [sinks.example_console]
> type = "console"
> inputs = ["example_transform.example_lane"] # would output the event from `example_lane`
> encoding.codec = "text"
> ```
> ```toml
> [sinks.example_console]
> type = "console"
> inputs = ["example_transform.example_lane"] # would output the event from `example_lane`
> encoding.codec = "text"
> ```
>
> Other components connected to the same transform, but with different lanes names or without lane names at all would not receive any event.

Original file line number Diff line number Diff line change
@@ -238,8 +238,8 @@ The new AWS SDK lacks support for certain authentication configuration:

- Vector now only supports IMDSv2 for authentication. If you were previously using IMDSv1, you will need to configure
the host to allow IMDSv2. For EKS, this likely means increasing the metadata token response hop limit to 2 (see
[Amazon EKS now supports EC2 Instance Metadata Service v2
](https://aws.amazon.com/about-aws/whats-new/2020/08/amazon-eks-supports-ec2-instance-metadata-service-v2/). We are
[Amazon EKS now supports EC2 Instance Metadata Service v2](https://aws.amazon.com/about-aws/whats-new/2020/08/amazon-eks-supports-ec2-instance-metadata-service-v2/).
We are
discussing the possibility of re-adding support for IMDSv1 in
[#12376](https://github.com/vectordotdev/vector/issues/12376).
- Vector AWS components' `auth.credential_file` option was removed as the new [SDK does not yet support it