Skip to content

Commit

Permalink
fixing cloudwatch logs
Browse files Browse the repository at this point in the history
  • Loading branch information
thathaneydude committed May 21, 2024
1 parent b065952 commit af82977
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ECR_REGISTRY="${AWS_ACCOUNT}.dkr.ecr.${AWS_REGION}.amazonaws.com"
# Pull from Dockerhub
CORELIGHT_REPO=corelight
CORELIGHT_IMAGE_NAME=sensor-enrichment-aws
CORELIGHT_IMAGE_TAG=1.0.0
CORELIGHT_IMAGE_TAG=0.1.0

SRC_IMAGE="$CORELIGHT_REPO/$CORELIGHT_IMAGE_NAME:$CORELIGHT_IMAGE_TAG"
DST_IMAGE="$ECR_REGISTRY/$CORELIGHT_IMAGE_NAME:$CORELIGHT_IMAGE_TAG"
Expand Down
2 changes: 1 addition & 1 deletion lambda_iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ resource "aws_iam_policy" "lambda_access_policy" {
"logs:PutLogEvents"
]
Effect = "Allow"
Resource = aws_cloudwatch_log_group.log_group.arn
Resource = "${aws_cloudwatch_log_group.log_group.arn}:*"
},
{
Action = [
Expand Down

0 comments on commit af82977

Please sign in to comment.