-
Notifications
You must be signed in to change notification settings - Fork 435
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: add missing actions to policy.json #1315
Changes from all commits
e10d62a
1690e23
1c2b07e
63d64f3
cad8393
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,11 @@ | |
"Effect": "Allow", | ||
"Action": [ | ||
"apigateway:GET", | ||
"codecommit:ListRepositories", | ||
"codecommit:ListTagsForResource", | ||
"codebuild:ListProjects", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since #1216 |
||
"codedeploy:ListApplications", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since #1228 |
||
"codedeploy:ListDeploymentGroups", | ||
"cloudwatch:GetMetricStatistics", | ||
"cloudfront:ListDistributions", | ||
"cloudfront:ListFunctions", | ||
|
@@ -14,6 +19,7 @@ | |
"cloudwatch:ListTagsForResource", | ||
"cloudwatch:ListDashboards", | ||
"cloudwatch:ListMetricStreams", | ||
"dynamodb:DescribeTable", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since #1111 |
||
"dynamodb:ListTables", | ||
"sts:GetCallerIdentity", | ||
"dynamodb:ListTagsOfResource", | ||
|
@@ -55,6 +61,7 @@ | |
"iam:ListRoles", | ||
"iam:ListSAMLProviders", | ||
"iam:ListSAMLProviderTags", | ||
"iam:ListUsers", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since #991 |
||
"kinesis:ListStreams", | ||
"kinesis:ListStreamConsumers", | ||
"kms:ListKeys", | ||
|
@@ -83,11 +90,12 @@ | |
"elasticfilesystem:DescribeFileSystems", | ||
"elasticfilesystem:ListTagsForResource", | ||
"iam:ListInstanceProfileTags", | ||
"lambda:ListEventSourceMappings", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since #1040 |
||
"lambda:ListFunctions", | ||
"lambda:ListTags", | ||
"es:ListDomainNames", | ||
"es:DescribeDomains", | ||
"s3:ListBucket" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This permission is for listing objects/contents of a bucket - AFAIK we don't need it
|
||
"s3:ListAllMyBuckets" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This permission is required for the S3.ListBuckets API method we're using
|
||
], | ||
"Resource": "*" | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since #1229