给出诸如
的政策{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowedActions",
"Effect": "Allow",
"Action": "*",
"Condition": {
"IpAddress": {
"aws:SourceIp": "1.1.1.2/32"
}
}
}
]
}
将SimulateCustomPolicy调用(在本例中为boto3)与上下文条目一起使用:
{ 'ContextKeyName': 'aws:SourceIp',
'ContextKeyType': 'ip',
'ContextKeyValues': ['1.1.1.2']}
对于某个操作,说“ cloudtrail:DeleteTrail”会得出对“ implicitDeny”的评估,而不是预期的“允许”。上下文是否不正确或不完整?