
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A company has deployed a Java Spring Boot application as a pod that runs on Amazon Elastic Kubernetes Service (Amazon EKS) in private subnets. The application needs to write data to an Amazon DynamoDB table. A solutions architect must ensure that the application can interact with the DynamoDB table without exposing traffic to the internet.
Which combination of steps should the solutions architect take to accomplish this goal? (Choose two.)
A
Attach an IAM role that has sufficient privileges to the EKS pod.
B
Attach an IAM user that has sufficient privileges to the EKS pod.
C
Allow outbound connectivity to the DynamoDB table through the private subnets' network ACLs.
D
Create a VPC endpoint for DynamoDB.
E
Embed the access keys in the Java Spring Boot code.
Explanation:
Correct Answers: A and D
A. Attach an IAM role that has sufficient privileges to the EKS pod. - This is correct because:
D. Create a VPC endpoint for DynamoDB. - This is correct because:
Why other options are incorrect:
B. Attach an IAM user that has sufficient privileges to the EKS pod. - Incorrect because:
C. Allow outbound connectivity to the DynamoDB table through the private subnets' network ACLs. - Incorrect because:
E. Embed the access keys in the Java Spring Boot code. - Incorrect because:
Key Concepts:
Architecture Design: