-
Notifications
You must be signed in to change notification settings - Fork 50
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
Update permissions for community.aws PR 565 #148
Conversation
aws/policy/networking.yaml
Outdated
@@ -71,6 +74,7 @@ Statement: | |||
- ec2:DescribeRouteTables | |||
- ec2:DescribeSecurityGroups | |||
- ec2:DescribeSubnets | |||
- ec2:DescribeTags |
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.
- ec2:DescribeTags |
The EC2 Tags permissions are over in the compute policy and should already be there.
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.
ec2:DescribeTags here duplicates the ec2:DescribeTags in compute.yaml. Amazon limits policy size (by character count) and we tend to run into those limits so it's helpful to avoid duplication.
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.
One small thing, otherwise the route53 permissions look good and the tests from 565 pass for me locally
aws/policy/networking.yaml
Outdated
@@ -71,6 +74,7 @@ Statement: | |||
- ec2:DescribeRouteTables | |||
- ec2:DescribeSecurityGroups | |||
- ec2:DescribeSubnets | |||
- ec2:DescribeTags |
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.
ec2:DescribeTags here duplicates the ec2:DescribeTags in compute.yaml. Amazon limits policy size (by character count) and we tend to run into those limits so it's helpful to avoid duplication.
Pushed an update. Thanks. |
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.
Thanks @badnetmask!
As recommended by @tremble, this PR updates permissions that allows integration tests to run for community.aws PR 565.