Merge pull request #2415 from brunog3/fix-iam-policy-statements-with-empty-sid

Fix multiple IAM Policy Statement creation with empty sid
This commit is contained in:
Steve Pulec 2019-09-11 22:04:35 -05:00 committed by GitHub
commit e5311eb6f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 2 deletions

View file

@ -1827,6 +1827,23 @@ valid_policy_documents = [
"Resource": ["*"]
}
]
},
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Action": "rds:*",
"Resource": ["arn:aws:rds:region:*:*"]
},
{
"Sid": "",
"Effect": "Allow",
"Action": ["rds:Describe*"],
"Resource": ["*"]
}
]
}
]