You need to enable JavaScript to run this app.
IAM

IAM

Copy page
Download PDF
Policy Example
Control permissions based on access IP (SourceIP)
Copy page
Download PDF
Control permissions based on access IP (SourceIP)

Scenario: Restrict access to all operations of the Application Load Balancer only from the Internet Protocol Address 8.8.8.8 (for example, not the real IP).
Policy example:

{ 
  "Statement": [ 
    { 
      "Effect": "Allow", 
      "Action": [ 
        "alb:*" 
      ], 
      "Resource": [ 
        "*" 
      ], 
      "Condition": { 
        "IpAddress": { 
          "volc:SourceIp":"8.8.8.8" 
        } 
      } 
    } 
  ] 
}

For details of the condition key, please refer to the Condition Use Instructions

Last updated: 2025.06.23 19:21:31