Skip to content

Commit 6a42db5

Browse files
committed
Adjusted amazone kinesis data streams examples to use 2 space indents. Part of issue #1890.
Signed-off-by: Eric D. Schabell <[email protected]>
1 parent a8b7c72 commit 6a42db5

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

pipeline/outputs/kinesis.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,22 @@ In your main configuration file append the following:
5252
```yaml
5353
pipeline:
5454

55-
outputs:
56-
- name: kinesis_steams
57-
match: '*'
58-
region: us-east-1
59-
stream: my-stream
55+
outputs:
56+
- name: kinesis_steams
57+
match: '*'
58+
region: us-east-1
59+
stream: my-stream
6060
```
6161
6262
{% endtab %}
6363
{% tab title="fluent-bit.conf" %}
6464
6565
```text
6666
[OUTPUT]
67-
Name kinesis_streams
68-
Match *
69-
region us-east-1
70-
stream my-stream
67+
Name kinesis_streams
68+
Match *
69+
region us-east-1
70+
stream my-stream
7171
```
7272

7373
{% endtab %}
@@ -78,15 +78,15 @@ pipeline:
7878
The following AWS IAM permissions are required to use this plugin:
7979

8080
```json
81-
{
82-
"Version": "2012-10-17",
83-
"Statement": [{
84-
"Effect": "Allow",
85-
"Action": [
86-
"kinesis:PutRecords"
87-
],
88-
"Resource": "*"
89-
}]
81+
{
82+
"Version": "2012-10-17",
83+
"Statement": [{
84+
"Effect": "Allow",
85+
"Action": [
86+
"kinesis:PutRecords"
87+
],
88+
"Resource": "*"
89+
}]
9090
}
9191
```
9292

0 commit comments

Comments
 (0)