Learning
Learning
Loading practice session...
AWS Certified SysOps Administrator · Exam domain
60 practice questions in this domain. AI-tutored explanations for every answer.
Sign in to practice all 60 questions with progress tracking and AI explanations.
1. A company wants to restrict access to its Amazon VPC so that only specific IP ranges from corporate offices can connect. Which VPC feature should be used to enforce this network-level access control?
Explanation
NACLs operate at the subnet level and support allow/deny rules based on IP CIDR ranges, making them ideal for restricting VPC access to specific corporate IP ranges. They are stateless and evaluate traffic in rule-number order.
2. An organization uses Amazon CloudFront to serve content globally but needs to block users from certain countries due to licensing restrictions. Which CloudFront feature accomplishes this requirement?
Explanation
CloudFront's built-in geo-restriction feature allows you to specify a whitelist or blacklist of countries, preventing users in blocked countries from accessing your CloudFront distribution without additional services.
3. A development team has 15 developers who all need the same set of AWS permissions to access S3 and DynamoDB resources. What is the most efficient and manageable IAM approach for this scenario?
Explanation
IAM groups allow you to assign permissions once to the group and have all member users inherit those permissions automatically. This is far more manageable than attaching individual policies to each of the 15 users.
4. An EC2 instance needs to read objects from an S3 bucket without storing AWS credentials on the instance. Which IAM construct is specifically designed to grant AWS service permissions without long-term credentials?
Explanation
IAM roles provide temporary credentials automatically rotated by AWS STS, eliminating the need to store long-term access keys on the EC2 instance. The role is assigned via an instance profile and assumed automatically by the instance.
5. A junior developer requires read-only access to a single S3 bucket named 'project-assets'. Which IAM policy approach best demonstrates the principle of least privilege for this requirement?
Explanation
Least privilege means granting only the exact permissions needed: s3:GetObject and s3:ListBucket scoped to the specific bucket ARN. AmazonS3ReadOnlyAccess grants access to all buckets, violating least privilege.
Practice all 60+ questions in this domain
Start free practice →