Skip to content

Commit

Permalink
Merge pull request #699 from udondan/update-aws-managed-policies
Browse files Browse the repository at this point in the history
  • Loading branch information
udondan committed May 15, 2024
2 parents e3ae67b + ec1eaed commit 2c85f99
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"Action": [
"cleanrooms:BatchGetCollaborationAnalysisTemplate",
"cleanrooms:BatchGetSchema",
"cleanrooms:BatchGetSchemaAnalysisRule",
"cleanrooms:CreateAnalysisTemplate",
"cleanrooms:CreateCollaboration",
"cleanrooms:CreateConfiguredTable",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
"Version": "2012-10-17",
"Statement": [
{
"Sid": "SESReadOnlyAccess",
"Effect": "Allow",
"Action": [
"ses:Get*",
"ses:List*"
"ses:List*",
"ses:BatchGetMetricData"
],
"Resource": "*"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowActionsForSecurityLake",
"Effect": "Allow",
"Action": [
"s3:GetObject",
Expand All @@ -23,6 +24,7 @@
"Resource": "*"
},
{
"Sid": "DenyActionsForSecurityLake",
"Effect": "Deny",
"NotAction": [
"s3:GetObject",
Expand All @@ -44,6 +46,7 @@
"Resource": "*"
},
{
"Sid": "DenyActionsNotOnSecurityLakeBucket",
"Effect": "Deny",
"Action": [
"s3:GetObject",
Expand All @@ -58,6 +61,7 @@
]
},
{
"Sid": "DenyActionsNotOnSecurityLakeSQS",
"Effect": "Deny",
"Action": [
"sqs:ReceiveMessage",
Expand All @@ -71,6 +75,7 @@
"NotResource": "arn:aws:sqs:*:*:AmazonSecurityLake*"
},
{
"Sid": "DenyActionsNotOnSecurityLakeKMSS3SQS",
"Effect": "Deny",
"Action": [
"kms:Decrypt",
Expand All @@ -87,6 +92,7 @@
}
},
{
"Sid": "DenyActionsNotOnSecurityLakeKMSForS3",
"Effect": "Deny",
"Action": [
"kms:Decrypt",
Expand All @@ -105,6 +111,7 @@
}
},
{
"Sid": "DenyActionsNotOnSecurityLakeKMSForS3SQS",
"Effect": "Deny",
"Action": [
"kms:Decrypt",
Expand Down

0 comments on commit 2c85f99

Please sign in to comment.