AWS - Identity and Access Management
Given this policy snippet:
What happens if a user tries to start an EC2 instance from IP
{
"Effect": "Allow",
"Action": "ec2:StartInstances",
"Resource": "*",
"Condition": {
"IpAddress": {"aws:SourceIp": "203.0.113.0/24"}
}
}What happens if a user tries to start an EC2 instance from IP
198.51.100.10?