Skip to content

Commit

Permalink
Cherry-pick #22057 to 7.10: Fix missing variable loading aws pipelines (
Browse files Browse the repository at this point in the history
#22645)

Add fips_enabled into aws fileset manifests (#22057)

(partial cherry pick from commit 5d07709)

Co-authored-by: kaiyan-sheng <[email protected]>
  • Loading branch information
jsoriano and kaiyan-sheng authored Nov 18, 2020
1 parent f98a26b commit cd8d059
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add field limit check for AWS Cloudtrail flattened fields. {pull}21388[21388] {issue}21382[21382]
- Fix syslog RFC 5424 parsing in the CheckPoint module. {pull}21854[21854]
- Fix incorrect connection state mapping in zeek connection pipeline. {pull}22151[22151] {issue}22149[22149]
- Fix missing variable when loading aws pipelines. {pull}22645[22645]

*Heartbeat*

Expand Down
18 changes: 18 additions & 0 deletions x-pack/filebeat/filebeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ filebeat.modules:
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

cloudwatch:
enabled: false

Expand Down Expand Up @@ -176,6 +179,9 @@ filebeat.modules:
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

ec2:
enabled: false

Expand Down Expand Up @@ -210,6 +216,9 @@ filebeat.modules:
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

elb:
enabled: false

Expand Down Expand Up @@ -244,6 +253,9 @@ filebeat.modules:
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

s3access:
enabled: false

Expand Down Expand Up @@ -278,6 +290,9 @@ filebeat.modules:
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

vpcflow:
enabled: false

Expand Down Expand Up @@ -312,6 +327,9 @@ filebeat.modules:
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

#-------------------------------- Azure Module --------------------------------
- module: azure
# All logs
Expand Down
18 changes: 18 additions & 0 deletions x-pack/filebeat/module/aws/_meta/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

cloudwatch:
enabled: false

Expand Down Expand Up @@ -79,6 +82,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

ec2:
enabled: false

Expand Down Expand Up @@ -113,6 +119,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

elb:
enabled: false

Expand Down Expand Up @@ -147,6 +156,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

s3access:
enabled: false

Expand Down Expand Up @@ -181,6 +193,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

vpcflow:
enabled: false

Expand Down Expand Up @@ -214,3 +229,6 @@

# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false
1 change: 1 addition & 0 deletions x-pack/filebeat/module/aws/cloudtrail/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ var:
default: true
- name: process_insight_logs
default: true
- name: fips_enabled

ingest_pipeline: ingest/pipeline.yml
input: config/{{.input}}.yml
1 change: 1 addition & 0 deletions x-pack/filebeat/module/aws/cloudwatch/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var:
- name: role_arn
- name: tags
default: [forwarded]
- name: fips_enabled

ingest_pipeline: ingest/pipeline.yml
input: config/{{.input}}.yml
1 change: 1 addition & 0 deletions x-pack/filebeat/module/aws/ec2/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var:
- name: role_arn
- name: tags
default: [forwarded]
- name: fips_enabled

ingest_pipeline: ingest/pipeline.yml
input: config/{{.input}}.yml
1 change: 1 addition & 0 deletions x-pack/filebeat/module/aws/elb/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var:
- name: role_arn
- name: tags
default: [forwarded]
- name: fips_enabled

ingest_pipeline: ingest/pipeline.yml
input: config/{{.input}}.yml
Expand Down
1 change: 1 addition & 0 deletions x-pack/filebeat/module/aws/s3access/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var:
- name: role_arn
- name: tags
default: [forwarded]
- name: fips_enabled

ingest_pipeline: ingest/pipeline.yml
input: config/{{.input}}.yml
1 change: 1 addition & 0 deletions x-pack/filebeat/module/aws/vpcflow/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ var:
- name: role_arn
- name: tags
default: [forwarded]
- name: fips_enabled

ingest_pipeline: ingest/pipeline.yml
input: config/input.yml
18 changes: 18 additions & 0 deletions x-pack/filebeat/modules.d/aws.yml.disabled
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

cloudwatch:
enabled: false

Expand Down Expand Up @@ -82,6 +85,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

ec2:
enabled: false

Expand Down Expand Up @@ -116,6 +122,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

elb:
enabled: false

Expand Down Expand Up @@ -150,6 +159,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

s3access:
enabled: false

Expand Down Expand Up @@ -184,6 +196,9 @@
# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

vpcflow:
enabled: false

Expand Down Expand Up @@ -217,3 +232,6 @@

# AWS IAM Role to assume
#var.role_arn: arn:aws:iam::123456789012:role/test-mb

# Enabling this option changes the service name from `s3` to `s3-fips` for connecting to the correct service endpoint.
#var.fips_enabled: false

0 comments on commit cd8d059

Please sign in to comment.