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

Fix: Lambda creation access denied #260

Merged
merged 1 commit into from
Apr 14, 2023
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
3 changes: 1 addition & 2 deletions terragrunt/aws/cloud_asset_inventory/sentinel_forwarder.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ module "sentinel_forwarder" {

log_type = local.cloudquery_service_name

# s3_sources takes a list of S3 buckets to forward to Sentinel under the format list(object({bucket_name = string, bucket_id = string, filter_prefix = string, kms_key_arn = string})})}))
s3_sources = [
{
bucket_arn = module.cloudquery_s3_bucket.s3_bucket_arn
bucket_id = module.cloudquery_s3_bucket.s3_bucket_id
filter_prefix = "cloudquery"
filter_prefix = "cloudquery/"
kms_key_arn = data.aws_kms_key.s3_bucket_kms_key.arn
}
]
Expand Down