Skip to content

Commit

Permalink
Add fips_enabled config parameter to log data streams (#302)
Browse files Browse the repository at this point in the history
* Add fips_enabled config parameter to log data streams

* Fix bool type
  • Loading branch information
kaiyan-sheng authored Oct 8, 2020
1 parent 8a9001e commit 6ab8269
Show file tree
Hide file tree
Showing 12 changed files with 66 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/aws/data_stream/cloudtrail/agent/stream/s3.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ role_arn: {{role_arn}}
{{#if aws_partition}}
aws_partition: {{aws_partition}}
{{/if}}
{{#if fips_enabled}}
fips_enabled: {{fips_enabled}}
{{/if}}
processors:
- add_fields:
target: ''
Expand Down
8 changes: 8 additions & 0 deletions packages/aws/data_stream/cloudtrail/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ streams:
required: true
show_user: true
description: URL of the AWS SQS queue that messages will be received from.
- name: fips_enabled
type: bool
title: Enable S3 FIPS
default: false
multi: false
required: false
show_user: false
description: Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ role_arn: {{role_arn}}
{{#if aws_partition}}
aws_partition: {{aws_partition}}
{{/if}}
{{#if fips_enabled}}
fips_enabled: {{fips_enabled}}
{{/if}}
processors:
- add_fields:
target: ''
Expand Down
8 changes: 8 additions & 0 deletions packages/aws/data_stream/cloudwatch_logs/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ streams:
required: true
show_user: true
description: URL of the AWS SQS queue that messages will be received from.
- name: fips_enabled
type: bool
title: Enable S3 FIPS
default: false
multi: false
required: false
show_user: false
description: Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
3 changes: 3 additions & 0 deletions packages/aws/data_stream/ec2_logs/agent/stream/s3.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ role_arn: {{role_arn}}
{{#if aws_partition}}
aws_partition: {{aws_partition}}
{{/if}}
{{#if fips_enabled}}
fips_enabled: {{fips_enabled}}
{{/if}}
processors:
- add_fields:
target: ''
Expand Down
8 changes: 8 additions & 0 deletions packages/aws/data_stream/ec2_logs/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ streams:
required: true
show_user: true
description: URL of the AWS SQS queue that messages will be received from.
- name: fips_enabled
type: bool
title: Enable S3 FIPS
default: false
multi: false
required: false
show_user: false
description: Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
3 changes: 3 additions & 0 deletions packages/aws/data_stream/elb_logs/agent/stream/s3.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ role_arn: {{role_arn}}
{{#if aws_partition}}
aws_partition: {{aws_partition}}
{{/if}}
{{#if fips_enabled}}
fips_enabled: {{fips_enabled}}
{{/if}}
processors:
- add_fields:
target: ''
Expand Down
8 changes: 8 additions & 0 deletions packages/aws/data_stream/elb_logs/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ streams:
required: true
show_user: true
description: URL of the AWS SQS queue that messages will be received from.
- name: fips_enabled
type: bool
title: Enable S3 FIPS
default: false
multi: false
required: false
show_user: false
description: Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
3 changes: 3 additions & 0 deletions packages/aws/data_stream/s3access/agent/stream/s3.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ role_arn: {{role_arn}}
{{#if aws_partition}}
aws_partition: {{aws_partition}}
{{/if}}
{{#if fips_enabled}}
fips_enabled: {{fips_enabled}}
{{/if}}
processors:
- add_fields:
target: ''
Expand Down
8 changes: 8 additions & 0 deletions packages/aws/data_stream/s3access/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ streams:
required: true
show_user: true
description: URL of the AWS SQS queue that messages will be received from.
- name: fips_enabled
type: bool
title: Enable S3 FIPS
default: false
multi: false
required: false
show_user: false
description: Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
3 changes: 3 additions & 0 deletions packages/aws/data_stream/vpcflow/agent/stream/s3.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ role_arn: {{role_arn}}
{{#if aws_partition}}
aws_partition: {{aws_partition}}
{{/if}}
{{#if fips_enabled}}
fips_enabled: {{fips_enabled}}
{{/if}}
processors:
- drop_event:
when.regexp.message: "^version"
Expand Down
8 changes: 8 additions & 0 deletions packages/aws/data_stream/vpcflow/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ streams:
required: true
show_user: true
description: URL of the AWS SQS queue that messages will be received from.
- name: fips_enabled
type: bool
title: Enable S3 FIPS
default: false
multi: false
required: false
show_user: false
description: Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.

0 comments on commit 6ab8269

Please sign in to comment.