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
gefragt vor 9 Monaten208 Aufrufe
1 Antwort
1
Akzeptierte Antwort

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
EXPERTE
kentrad
beantwortet vor 9 Monaten
profile picture
EXPERTE
überprüft vor 9 Monaten
profile picture
EXPERTE
überprüft vor 9 Monaten
profile pictureAWS
EXPERTE
überprüft vor 9 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen