ExamQuestions.com

Register
Login
AWS Certified Security Specialty Exam Questions

Amazon

AWS Certified Security Specialty

222 / 310

Question 222:

As an AWS consultant, you need to help the team create a private Certificate Authority (CA) in ACM. The certificates generated from the CA are used for internal API endpoints. For security purposes, you need to control the access to the private CA. For example, most users should only have read access to the private CA certificates. What is the most suitable way for you to configure the access?

Answer options:

A.Create an ACM private CA policy and associate it with the private Certificate Authority in ACM. Assign the read-only actions to the IAM entities in the “Principal” field.
B.Manage a key policy in AWS KMS and use it to control the access. Make sure that read-only IAM entities are configured as the certificate users in the key policy.
C.Create the below IAM policy and attach it to IAM users, groups or roles:
{
 "Version":"2012-10-17",
 "Statement":{
"Effect":"Allow",
"Action":[
 "acm-pca:DescribeCertificateAuthority",
 "acm-pca:ListCertificateAuthorities",
 "acm-pca:GetCertificate"
],
"Resource":"*"
 }
}
D.Configure the below resource policy and attach it to the CA certificate in ACM:
{
 "Version":"2012-10-17",
 "Statement":{
"Effect":"Allow",
"Action":[
 "acm:Describe*",
 "acm:List*",
 "acm:GetCertificate"
],
"Resource":"*"
 }
}