cdk-drift-monitor
v0.2.515
Published
Monitors for CloudFormation stack drifts
Readme
CDK Drift Monitor
Monitors for CloudFormation stack drifts. By default, detects drifts for all stacks:
new DriftMonitor(driftDetectStack, 'DriftMonitor');You can also specify a list of stacks to detect drifts:
new DriftMonitor(driftDetectStack, 'DriftMonitor', {
stacks: [myStack1, myStack2],
});It can also be initialized by providing stack names:
new DriftMonitor(driftDetectStack, 'DriftMonitor', {
stackNames: ['myStack1', 'myStack2'],
});By default, the drift detection will run every hour. This can be customized:
new DriftMonitor(driftDetectStack, 'DriftMonitor', {
runEvery: Duration.hours(24),
});The construct creates an alarm with no actions. Here's an example for adding an alarm action:
import * as sns from 'aws-cdk-lib/aws-sns';
import { SnsAction } from 'aws-cdk-lib/aws-cloudwatch-actions';
const driftMonitor = new DriftMonitor(driftDetectStack, 'DriftMonitor');
const topic = new sns.Topic(this, 'errorTopic');
driftMonitor.alarm.addAlarmAction(new SnsAction(topic));Lambda Runtime
By default, the drift detection Lambda function uses the latest Node.js runtime available in your deployment region. This is determined automatically at CDK synthesis time.
You can override the runtime to use a specific Node.js version:
import * as lambda from 'aws-cdk-lib/aws-lambda';
new DriftMonitor(driftDetectStack, 'DriftMonitor', {
runtime: lambda.Runtime.NODEJS_20_X,
});Roadmap
- [ ] Publish to Maven
- [ ] Publish to PyPi
- [ ] Publish to NuGet
- [ ] Use AWS Config rule
cloudformation-stack-drift-detection-checkinstead of custom lambda
Security
See CONTRIBUTING for more information.
License
This project is licensed under the Apache-2.0 License.
