Skip to content

Commit 452574b

Browse files
committed
Updating for style
Signed-off-by: Lynette Miles <[email protected]>
1 parent 38a826d commit 452574b

File tree

1 file changed

+29
-18
lines changed

1 file changed

+29
-18
lines changed

installation/aws-container.md

Lines changed: 29 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,57 @@
11
# Containers on AWS
22

3-
AWS maintains a distribution of Fluent Bit combining the latest official release with a set of Go Plugins for sending logs to AWS services. AWS and Fluent Bit are working together to rewrite their plugins for inclusion in the official Fluent Bit distribution.
3+
AWS maintains a distribution of Fluent Bit combining the latest official release with
4+
a set of Go Plugins for sending logs to AWS services. AWS and Fluent Bit are working
5+
together to rewrite their plugins for inclusion in the official Fluent Bit
6+
distribution.
47

58
## Plugins
69

7-
Currently, the [AWS for Fluent Bit](https://github.com/aws/aws-for-fluent-bit) image contains Go Plugins for:
10+
The [AWS for Fluent Bit](https://github.com/aws/aws-for-fluent-bit) image contains Go
11+
Plugins for:
812

9-
* [Amazon CloudWatch Logs](https://github.com/aws/amazon-cloudwatch-logs-for-fluent-bit)
10-
* [Amazon Kinesis Firehose](https://github.com/aws/amazon-kinesis-firehose-for-fluent-bit)
11-
* [Amazon Kinesis Streams](https://github.com/aws/amazon-kinesis-streams-for-fluent-bit)
13+
- [Amazon CloudWatch](https://docs.fluentbit.io/manual/pipeline/outputs/cloudwatch)
14+
- [Amazon Kinesis Data Firehose](https://docs.fluentbit.io/manual/pipeline/outputs/firehose)
15+
- [Amazon Kinesis Data Streams](https://docs.fluentbit.io/manual/pipeline/outputs/kinesis)
1216

13-
Fluent Bit includes Amazon CloudWatch Logs plugin named `cloudwatch_logs`, Amazon Kinesis Firehose plugin named `kinesis_firehose` and Amazon Kinesis Data Streams plugin named `kinesis_streams` which are higher performance than Go plugins.
17+
- [Amazon CloudWatch Logs](https://github.com/aws/amazon-cloudwatch-logs-for-fluent-bit) as `cloudwatch_logs`
18+
- [Amazon Kinesis
19+
Firehose](https://github.com/aws/amazon-kinesis-firehose-for-fluent-bit) as `kinesis_firehose`
20+
- [Amazon Kinesis
21+
Streams](https://github.com/aws/amazon-kinesis-streams-for-fluent-bit) as `kinesis_streams`
1422

15-
* [Amazon CloudWatch](https://docs.fluentbit.io/manual/pipeline/outputs/cloudwatch)
16-
* [Amazon Kinesis Data Firehose](https://docs.fluentbit.io/manual/pipeline/outputs/firehose)
17-
* [Amazon Kinesis Data Streams](https://docs.fluentbit.io/manual/pipeline/outputs/kinesis)
23+
These plugins are higher performance than Go plugins.
1824

19-
Also, Fluent Bit includes S3 output plugin named `s3`.
25+
Also, Fluent Bit includes an S3 output plugin named `s3`.
2026

21-
* [Amazon S3](https://docs.fluentbit.io/manual/pipeline/outputs/s3)
27+
- [Amazon S3](https://docs.fluentbit.io/manual/pipeline/outputs/s3)
2228

2329
## Versions and Regional Repositories
2430

25-
AWS vends their container image via [Docker Hub](https://hub.docker.com/r/amazon/aws-for-fluent-bit), and a set of highly available regional Amazon ECR repositories. For more information, see the [AWS for Fluent Bit GitHub repo](https://github.com/aws/aws-for-fluent-bit#public-images).
31+
AWS vends their container image using
32+
[Docker Hub](https://hub.docker.com/r/amazon/aws-for-fluent-bit), and a set of highly
33+
available regional Amazon ECR repositories. For more information, see the
34+
[AWS for Fluent Bit GitHub repository](https://github.com/aws/aws-for-fluent-bit#public-images).
2635

27-
The AWS for Fluent Bit image uses a custom versioning scheme because it contains multiple projects. To see what each release contains, check out the [release notes on GitHub](https://github.com/aws/aws-for-fluent-bit/releases).
36+
The AWS for Fluent Bit image uses a custom versioning scheme because it contains
37+
multiple projects. To see what each release contains, see the [release notes on
38+
GitHub](https://github.com/aws/aws-for-fluent-bit/releases).
2839

2940
## SSM Public Parameters
3041

31-
AWS vends SSM Public Parameters with the regional repository link for each image. These parameters can be queried by any AWS account.
42+
AWS vends SSM Public Parameters with the regional repository link for each image.
43+
These parameters can be queried by any AWS account.
3244

3345
To see a list of available version tags in a given region, run the following command:
3446

35-
```text
47+
```bash
3648
aws ssm get-parameters-by-path --region eu-central-1 --path /aws/service/aws-for-fluent-bit/ --query 'Parameters[*].Name'
3749
```
3850

3951
To see the ECR repository URI for a given image tag in a given region, run the following:
4052

41-
```text
42-
$ aws ssm get-parameter --region ap-northeast-1 --name /aws/service/aws-for-fluent-bit/2.0.0
53+
```bash
54+
aws ssm get-parameter --region ap-northeast-1 --name /aws/service/aws-for-fluent-bit/2.0.0
4355
```
4456

4557
You can use these SSM public parameters as parameters in your CloudFormation templates:
@@ -51,4 +63,3 @@ Parameters:
5163
Type: AWS::SSM::Parameter::Value<String>
5264
Default: /aws/service/aws-for-fluent-bit/latest
5365
```
54-

0 commit comments

Comments
 (0)