I would like to possible add IP restrictions for some IAM accounts

0

I looked under IAM Users and Groups, but I cannot find where to do this, if this is even possible.

MrJones
質問済み 9ヶ月前208ビュー
1回答
1
承認された回答

Here is an example: AWS: Denies access to AWS based on the source IP.

{
    "Version": "2012-10-17",
    "Statement": {
        "Effect": "Deny",
        "Action": "*",
        "Resource": "*",
        "Condition": {
            "NotIpAddress": {
                "aws:SourceIp": [
                    "192.0.2.0/24",
                    "203.0.113.0/24"
                ]
            },
            "Bool": {"aws:ViaAWSService": "false"}
        }
    }
}
profile pictureAWS
エキスパート
kentrad
回答済み 9ヶ月前
profile picture
エキスパート
レビュー済み 9ヶ月前
profile picture
エキスパート
レビュー済み 9ヶ月前
profile pictureAWS
エキスパート
レビュー済み 9ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ