We have IAM policies in place that used to permit the roles to edit a security group rules
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"ec2:RevokeSecurityGroupIngress",
"ec2:AuthorizeSecurityGroupIngress"
],
"Resource": "arn:aws:ec2:eu-west-1:XXXXXXXXXXX:security-group/sg-XXXXXXXXXXX"
}
]
}
Since yesterday these roles are blocked with this message:
you may be missing iam policies that allow DescribeSecurityGroupRules
I did my research and it comes from the AWS update described in this article but there is no indication that it might break policies and no indication either on what action is necessary to make the policy works again.
What could be the shorter change I have to do to fix this problem?