Fix multiple IAM Policy Statement creation with empty sid

This commit is contained in:
Bruno Oliveira 2019-09-10 23:43:50 -03:00
commit 21933052d3
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": ["*"]
}
]
}
]