Amazon AWS Certified SysOps Administrator - Associate SOA-C02
Prev

There are 349 results

Next
#151 (Accuracy: 100% / 2 votes)
A company uses AWS CloudFormation to deploy its application infrastructure. Recently, a user accidentally changed a property of a database in a CloudFormation template and performed a stack update that caused an interruption to the application. A SysOps administrator must determine how to modify the deployment process to allow the DevOps team to continue to deploy the infrastructure, but prevent against accidental modifications to specific resources.

Which solution will meet these requirements?
  • A. Set up an AWS Config rule to alert based on changes to any CloudFormation stack. An AWS Lambda function can then describe the stack to determine if any protected resources were modified and cancel the operation.
  • B. Set up an Amazon EventBridge event with a rule to initiate based on any CloudFormation API call. An AWS Lambda function can then describe the stack to determine if any protected resources were modified and cancel the operation.
  • C. Launch the CloudFormation templates using a stack policy with an explicit allow for all resources and an explicit deny of the protected resources with an action of Update:*.
  • D. Attach an IAM policy to the DevOps team role that prevents a CloudFormation stack from updating, with a condition based on the specific Amazon Resource Names (ARNs) of the protected resources.
#152 (Accuracy: 100% / 3 votes)
A company wants to store sensitive financial data within Amazon S3 buckets. The company has a corporate policy that does not allow public read or write access to the buckets. A SysOps administrator must create a solution to automatically remove S3 permissions that allow public read or write access.

Which AWS service should the SysOps administrator use to meet these requirements in the MOST operationally efficient manner?
  • A. AWS Config
  • B. AWS Security Hub
  • C. AWS Trusted Advisor
  • D. Amazon Inspector
#153 (Accuracy: 100% / 10 votes)
A company wants to use only IPv6 for all its Amazon EC2 instances. The EC2 instances must not be accessible from the internet, but the EC2 instances must be able to access the internet. The company creates a dual-stack VPC and IPv6-only subnets.

How should a SysOps administrator configure the VPC to meet these requirements?
  • A. Create and attach a NAT gateway. Create a custom route table that includes an entry to point all IPv6 traffic to the NAT gateway. Attach the custom route table to the IPv6-only subnets.
  • B. Create and attach an internet gateway. Create a custom route table that includes an entry to point all IPv6 traffic to the internet gateway. Attach the custom route table to the IPv6-only subnets.
  • C. Create and attach an egress-only internet gateway. Create a custom route table that includes an entry to point all IPv6 traffic to the egress-only internet gateway. Attach the custom route table to the IPv6-only subnets.
  • D. Create and attach an internet gateway and a NAT gateway. Create a custom route table that includes an entry to point all IPv6 traffic to the internet gateway and all IPv4 traffic to the NAT gateway. Attach the custom route table to the IPv6-only subnets.
#154 (Accuracy: 91% / 9 votes)
A SysOps administrator is reviewing VPC Flow Logs to troubleshoot connectivity issues in a VPC. While reviewing the logs, the SysOps administrator notices that rejected traffic is not listed.

What should the SysOps administrator do to ensure that all traffic is logged?
  • A. Create a new flow log that has a filter setting to capture all traffic.
  • B. Create a new flow log. Set the log record format to a custom format. Select the proper fields to include in the log.
  • C. Edit the existing flow log. Change the filter setting to capture all traffic.
  • D. Edit the existing flow log. Set the log record format to a custom format. Select the proper fields to include in the log.
#155 (Accuracy: 100% / 6 votes)
A company is using Amazon Elastic Container Service (Amazon ECS) to run a containerized application on Amazon EC2 instances. A SysOps administrator needs to monitor only traffic flows between the ECS tasks.

Which combination of steps should the SysOps administrator take to meet this requirement? (Choose two.)
  • A. Configure Amazon CloudWatch Logs on the elastic network interface of each task.
  • B. Configure VPC Flow Logs on the elastic network interface of each task.
  • C. Specify the awsvpc network mode in the task definition.
  • D. Specify the bridge network mode in the task definition.
  • E. Specify the host network mode in the task definition.
#156 (Accuracy: 100% / 8 votes)
A company uses AWS CloudFormation templates to deploy cloud infrastructure. An analysis of all the company's templates shows that the company has declared the same components in multiple templates. A SysOps administrator needs to create dedicated templates that have their own parameters and conditions for these common components.

Which solution will meet this requirement?
  • A. Develop a CloudFormation change set.
  • B. Develop CloudFormation macros.
  • C. Develop CloudFormation nested stacks.
  • D. Develop CloudFormation stack sets.
#157 (Accuracy: 100% / 4 votes)
A company with multiple AWS accounts needs to obtain recommendations for AWS Lambda functions and identify optimal resource configurations for each Lambda function.

How should a SysOps administrator provide these recommendations?
  • A. Create an AWS Serverless Application Repository and export the Lambda function recommendations.
  • B. Enable AWS Compute Optimizer and export the Lambda function recommendations.
  • C. Enable all features of AWS Organizations and export the recommendations from AWS CloudTrail Insights.
  • D. Run AWS Trusted Advisor and export the Lambda function recommendations.
#158 (Accuracy: 100% / 2 votes)
A company has a critical serverless application that uses multiple AWS Lambda functions. Each Lambda function generates 1 GB of log data daily in its own Amazon CloudWatch Logs log group. The company's security team asks for a count of application errors, grouped by type, across all of the log groups.

What should a SysOps administrator do to meet this requirement?
  • A. Perform a CloudWatch Logs Insights query that uses the stats command and count function.
  • B. Perform a CloudWatch Logs search that uses the groupby keyword and count function.
  • C. Perform an Amazon Athena query that uses the SELECT and GROUP BY keywords.
  • D. Perform an Amazon RDS query that uses the SELECT and GROUP BY keywords.
#159 (Accuracy: 100% / 5 votes)
A company hosts a static website on Amazon S3. The website is served by an Amazon CloudFront distribution with a default TTL of 86,400 seconds.
The company recently uploaded an updated version of the website to Amazon S3.
However, users still see the old content when they refresh the site. A SysOps administrator must make the new version of the website visible to users as soon as possible.
Which solution meets these requirements?
  • A. Adjust the TTL value for the DNS CNAME record that is pointing to the CloudFront distribution.
  • B. Create an invalidation on the CloudFront distribution for the old S3 objects.
  • C. Create a new CloudFront distribution. Update the DNS records to point to the new CloudFront distribution.
  • D. Update the DNS record for the website to point to the S3 bucket.
#160 (Accuracy: 100% / 8 votes)
A company uses an AWS CloudFormation template to provision an Amazon EC2 instance and an Amazon RDS DB instance. A SysOps administrator must update the template to ensure that the DB instance is created before the EC2 instance is launched.
What should the SysOps administrator do to meet this requirement?
  • A. Add a wait condition to the template. Update the EC2 instance user data script to send a signal after the EC2 instance is started.
  • B. Add the DependsOn attribute to the EC2 instance resource, and provide the logical name of the RDS resource.
  • C. Change the order of the resources in the template so that the RDS resource is listed before the EC2 instance resource.
  • D. Create multiple templates. Use AWS CloudFormation StackSets to wait for one stack to complete before the second stack is created.