A SysOps administrator is managing configuration parameters in AWS Systems Manager Parameter Store. To satisfy a security compliance requirement, a sensitive configuration parameter must be updated at least once every days. If the parameter is not updated within this period, the operations team must receive a notification. If the parameter remains unmodified after days, it must be automatically deleted to prevent the use of stale configurations.
Which combination of actions should the SysOps administrator take to meet these requirements? (Select TWO.)
- Apply a parameter policy to the parameter that includes a NoChangeNotification policy set to days and an Expiration policy set to days.Answer
- Create an Amazon EventBridge rule that filters for Systems Manager Parameter Store parameter policy events and sends notifications to an Amazon Simple Notification Service (Amazon SNS) topic.Answer
- CConfigure an AWS Key Management Service (AWS KMS) key policy on the key used to encrypt the parameter to automatically deny decrypt permissions to the application after days.
- DConfigure automatic rotation for the parameter in AWS Secrets Manager, setting the rotation interval to days and defining a Lambda function to delete the secret after days.
- ECreate an AWS Config rule to monitor the parameter compliance and trigger an AWS Systems Manager Automation runbook to delete the parameter if it is not updated within days.
Answer
To meet the requirements, the SysOps administrator should apply a parameter policy containing both a NoChangeNotification policy set to 90 days and an Expiration policy set to 120 days, and create an Amazon EventBridge rule to route the parameter policy events to an Amazon SNS topic.
Applying a parameter policy containing both a NoChangeNotification type (for the 90-day alert) and an Expiration type (for the 120-day deletion) enables the native enforcement of parameter lifecycles. Creating an Amazon EventBridge rule that detects Parameter Store policy actions and routes them to an Amazon SNS topic ensures that the operations team receives alerts when the 90-day no-change limit is reached.
Step-by-Step Solution
Key Concept
Systems Manager Parameter Store Parameter Policies