Miscellaneous Flashcards
(97 cards)
What is AWS Savings Plan?
Savings Plans provides you lower prices for your Amazon EC2 usage, Fargate, and Lambda in exchange for a commitment to a consistent usage amount (measured in $/hour) for a one or three year term
What formats are allowed to be used for CloudFormation templates?
JSON and YAML
What are the four core pricing tiers of AWS accounts?
- Free Tier
- Developer
- Buisness
- Enterprise
What is ClassicLink used for?
Linking EC2-Classic instances with VPC resources
Does CloudFront Signed Cookies / URLs prevent you from being able to directly access S3 buckets via S3 URLs?
No
Does AWS PrivateLink support access to S3?
No
Does AWS PrivateLink support access to ECS?
Yes
Does AWS PrivateLink support access to ECR?
Yes
What does an Amazon Gateway Endpoint do?
provides secure access to S3 and DynamoDB without traffic routing to the internet
At a high level, what is AWS Data Pipeline?
AWS Data Pipeline is a web service that you can use to automate the movement and transformation of data
What does AWS stand for?
Amazon Web Services
At a high level, what it AWS? What does it provide?
- AWS is a Cloud Provider
- They provide you with servers and services that you can use on demand and that scale easily
What is the default ASG termination policy sequence on Scale-in operation?
- AZ with most instances
- Oldest launch configuration
- Closest to the billing hour
- Random
How to grant permission to application running on ECS?
You define the IAM role to use in your task definitions, or you can use a taskRoleArn override when running a task manually with the RunTask API operation.
How to enable encryption for existing RDS instance?
Take a snapshot of the RDS instance. Create an encrypted copy of the snapshot. Restore the RDS instance from the encrypted snapshot
A web application is deployed in multiple regions behind an ELB Application Load Balancer. You need deterministic routing to the closest region and automatic failover. Traffic should traverse the AWS global network for consistent performance.
Configure AWS Global Accelerator and configure the ALBs as targets
A solutions architect has been tasked with designing a highly resilient hybrid cloud architecture connecting an on-premises data center and AWS. The network should include AWS Direct Connect (DX).
Which DX configuration offers the HIGHEST resiliency?
Configure DX connections at multiple DX locations
How can you scale compute layer based on the number of jobs to be processed?
Create an Amazon SQS queue to hold the jobs that needs to be processed. Create an Amazon EC2 Auto Scaling group for the compute application. Set the scaling policy for the Auto Scaling group to add and remove nodes based on the number of items in the SQS queue
An application is running on Amazon EC2 behind an Elastic Load Balancer (ELB). Content is being published using Amazon CloudFront and you need to restrict the ability for users to circumvent CloudFront and access the content directly through the ELB.
How can you configure this solution?
he only way to get this working is by using a VPC Security Group for the ELB that is configured to allow only the internal service IP ranges associated with CloudFront. As these are updated from time to time, you can use AWS Lambda to automatically update the addresses. This is done using a trigger that is triggered when AWS issues an SNS topic update when the addresses are changed.
How can you enable encryption in transit between ELB and EC2?
- Use a Network Load Balancer (NLB) with a TCP listener, then terminate SSL on EC2 instances
- Use an Application Load Balancer (ALB) with an HTTPS listener, then install SSL certificates on the ALB and EC2 instances
Can you use AWS WAF with Network Load Balancer?
No!
How to enable file system that can be mounted on EC2 Windows AND Linux instances?
Amazon FSx for Windows File Server provides a fully managed native Microsoft Windows file system so you can easily move your Windows-based applications that require shared file storage to AWS. You can easily connect Linux instances to the file system by installing the cifs-utils package. The Linux instances can then mount an SMB/CIFS file system.
A company runs a business-critical application in the us-east-1 Region. The application uses an Amazon Aurora MySQL database cluster which is 2 TB in size. A Solutions Architect needs to determine a disaster recovery strategy for failover to the us-west-2 Region. The strategy must provide a recovery time objective (RTO) of 10 minutes and a recovery point objective (RPO) of 5 minutes.
Recreate the database as an Aurora global database with the primary DB cluster in us-east-1 and a secondary DB cluster in us-west-2. Use an Amazon EventBridge rule that invokes an AWS Lambda function to promote the DB cluster in us-west-2 when failure is detected
An organization is extending a secure development environment into AWS. They have already secured the VPC including removing the Internet Gateway and setting up a Direct Connect connection. What else needs to be done to add encryption?
A VPG is used to setup an AWS VPN which you can use in combination with Direct Connect to encrypt all data that traverses the Direct Connect link. This combination provides an IPsec-encrypted private connection that also reduces network costs, increases bandwidth throughput, and provides a more consistent network experience than internet-based VPN connections.