How to Notify the Security Team 90 Days Before an Imported ACM Certificate Expires?
A company generates SSL certificates from a third-party provider. The company imports the certificates into AWS Certificate Manager (ACM) to use with public web applications. A developer must implement a solution to notify the company’s security team 90 days before an imported certificate expires. The company already has configured an Amazon Simple Queue Service (Amazon SQS) queue. The company also has configured an Amazon Simple Notification Service (Amazon SNS) topic that has the security team’s email address as a subscriber. Which solution will provide the security team with the required notification about certificates?
Community Votes
71% of anonymous learners picked answer A. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The exam tests whether you know that ACM's built-in expiration events are not configurable to a 90-day lead time, whereas an AWS Config managed rule can be set with daysToExpiration=90 and emit compliance-change events to notify via SNS.
When imported ACM certificates need to trigger a 90-day expiration alert, the reliable solution is to use the AWS Config acm-certificate-expiration-check managed rule with EventBridge and SNS. While the ACM Certificate Approaching Expiration event is popular, it cannot be customised to a 90-day threshold for imported third-party certificates.
Choosing Option A because 'ACM Certificate Approaching Expiration' sounds ideal; however, this event has a fixed, AWS-defined expiration window and is not a substitute for a configurable 90-day custom check.
Community Discussion (4 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Option D is correct because it uses the AWS Config managed ruleacm-certificate-expiration-check, which accepts a daysToExpiration parameter that can be set to 90 days for all certificates in ACM, including imported certificates. When the rule evaluates certificates and finds one approaching expiration within that threshold, it produces a compliance change event that EventBridge can match. The EventBridge rule then routes the Config Rules Compliance Change event to the existing SNS topic, which emails the security team. This fully satisfies the requirement for a 90-day notification.Why the Other Options Are Wrong
Option A is a common trap: ACM does publishACM Certificate Approaching Expiration events to EventBridge, but the event is emitted at AWS's fixed default interval (often 45-60 days), not a configurable 90-day deadline, and it is not designed for third-party certificates that need custom renewal reminders. Option B sends messages to the SQS queue, but the requirement is to notify the security team through SNS, and there is no poller that forwards from SQS to SNS. Option C incorrectly relies on CloudTrail expiration notifications, which do not exist, and also sends to SQS instead of SNS.Community Comment Notes
One comment correctly points out that both A and D are viable solutions, but then explains why D is more accurate because the Config rule can be configured for a custom number of days. Other comments favour A by quoting that ACM has anACM Certificate Approaching Expiration event, but they overlook the fact that the event's timing is not user-configurable. The key takeaway from community discussion is that the phrase '90 days before' should steer you toward a parameterisable AWS Config rule rather than a fixed EventBridge event. Official Reference
Exam Strategy
Remember that customisable time windows (e.g. '90 days before') are a strong signal to use an AWS Config managed rule with a parameter like daysToExpiration, not a pre-defined EventBridge event. Read the question for explicit timing requirements: ACM and EventBridge events have fixed default thresholds, while AWS Config can be evaluated on a schedule and configured for your exact number of days.
Related Analysis
Practice All DVA-C02 Questions
Access 100 questions with complete answers and detailed explanations.
View Full DVA-C02 Practice Test →