Fix multiple IAM Policy Statement creation with empty sid
This commit is contained in:
parent
3a5d857a60
commit
21933052d3
2 changed files with 21 additions and 2 deletions
|
|
@ -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": ["*"]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue