The SysOps administrator needs to resolve high disk I/O issues during the bootstrap process of Nitro-based EC2 instances in an Auto Scaling group with gp3 EBS volumes.
Options (Select TWO):
Answer : C, D
To address high I/O requirements during the bootstrap process, increasing both IOPS and throughput on the EBS volume is recommended:
Increase EBS Volume IOPS: Enhances the instance's ability to handle multiple read and write operations per second, essential for data-heavy tasks like downloading Docker images.
Increase EBS Volume Throughput: Provides higher data transfer rates, reducing bottlenecks during intensive I/O operations.
Increasing instance size is unnecessary if the primary issue is disk I/O, and changing from Nitro-based instances would not address the underlying storage performance need.
The SysOps administrator needs to deploy auditing software on all existing and new EC2 instances across multiple Regions, using AWS Systems Manager.
Options:
Answer : A
Using AWS Systems Manager Distributor and State Manager is an automated and scalable solution for managing software installation across EC2 instances.
Systems Manager Distributor: Allows packaging and distributing the auditing software across multiple Regions.
State Manager Association: Automates software installation on both existing and new instances, ensuring consistent deployment across all managed instances.
Manually connecting to instances or using Lambda is not scalable or efficient for this type of ongoing software management.
The company needs a shared file solution for EC2 Windows instances in a Multi-AZ deployment that uses native Windows storage capabilities and maximizes consistency.
Options:
Answer : A
Amazon FSx for Windows File Server provides a fully managed, highly available, and native Windows file system compatible with the SMB protocol, ideal for Windows workloads requiring shared access.
Multi-AZ File System: Ensures high availability across multiple Availability Zones.
Native Windows Capabilities: Allows instances to map file shares and access files using Windows storage features, offering strong consistency and performance for shared files.
Other options, like Amazon S3 and Amazon EFS, either lack native Windows integration or do not offer the desired consistency and high availability for shared file systems in a Windows environment.
The company wants to use three On-Demand Instances at all times and additional three Spot Instances when prices drop to a specific threshold, ensuring high availability with minimal management overhead.
Options:
Answer : C
The MixedInstancesPolicy feature in Auto Scaling groups allows for the configuration of both On-Demand and Spot Instances within a single Auto Scaling group, balancing cost savings and high availability:
MixedInstancesPolicy: Enables configuration to maintain a minimum of three On-Demand Instances and add Spot Instances when prices drop, without the need to create separate launch templates.
Setting Maximum Spot Price: Ensures that additional Spot Instances are launched only when within the defined budget.
This solution offers the least management overhead, as it combines both On-Demand and Spot instances seamlessly in one configuration.
The SysOps administrator must modify the AWS Config rule that deletes noncompliant SSH inbound rules to update the rule to allow SSH from specific trusted IP addresses instead.
Options:
Answer : B
Using a Systems Manager Automation runbook is appropriate for managing security group rules within the AWS Config remediation framework. A runbook provides a reusable, automated solution that can update the security group rule based on an IP list.
Automation Runbook for Security Group Updates: A runbook can automate security group modifications, such as adding the trusted IP addresses specified by the business units.
AWS Config Integration: Config rules can be set to use this runbook for automatic remediation, ensuring that the rule is updated without deleting it, which aligns with the requirement for SSH access from specific IPs.
Lambda functions could work but would require additional customization and complexity, making the runbook a more manageable and scalable solution for this task.
A SysOps administrator needs to share a new AMI with all accounts within an organization managed through AWS Organizations.
Options:
Answer : C
The most operationally efficient solution is to use the organization ARN to share the AMI across all accounts within AWS Organizations.
AMI Sharing with Organization ARN: AWS allows you to share AMIs with an entire AWS Organization by specifying the organization's ARN, simplifying access management for multiple accounts.
Efficient Management: This approach eliminates the need to share AMIs individually with each account or make them public, and it avoids the complexity of using snapshots.
Making the AMI public is not secure, and using AWS Marketplace or snapshots does not provide the operational efficiency required.
A SysOps administrator must implement a limited rollout of a new version of the website to 20% of customers using Amazon Route 53.
Options:
Answer : B
Weighted routing in Route 53 allows you to direct a percentage of traffic to different resources by configuring specific weights. For this requirement, you can:
Weighted Routing Policy: This is the most suitable approach for gradually rolling out a new version by controlling traffic distribution.
Weight Configuration: Setting a weight of 80 for the original resource and 20 for the new resource ensures that 80% of the traffic continues to go to the existing version, while 20% is directed to the new version.
Other routing policies, such as failover and multivalue answer, are not intended for traffic distribution based on percentage; they serve different use cases.