I have this CDK code:
const logGroup = new LogGroup(this, 'MyAppLogGroup', {
logGroupName: 'myapp',
retention: RetentionDays.ONE_DAY
});
When I run cdk deploy
, log group is created in CloudWatch, but when I run cdk destroy
, it's not deleted. Is there some way to enable this?