带有{aws:SourceIP}上下文的IAM策略的AWS模拟

时间:2018-12-18 14:40:23

标签: amazon-web-services boto3 amazon-iam

给出诸如

的政策
{
  "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”的评估,而不是预期的“允许”。上下文是否不正确或不完整?

0 个答案:

没有答案