2012-10-11から1日間の記事一覧

IAMでソースIPを制限する

AWS

こんな感じ。 { "Statement": [ { "Action": [ "ec2:Describe*" ], "Effect": "Allow", "Resource": "*", "Condition": { "IpAddress": { "aws:SourceIp": [ "100.100.100.10", "100.100.101.0/24" ] } } } ] }