standard
turbot/aws_compliance

Trigger: Detect & correct DynamoDB table with deletion protection disabled

Detect DynamoDB tables with deletion protection disabled and then skip or enable deletion protection.

Query

select
concat(name, ' [', account_id, '/', region, ']') as title,
name,
region,
sp_connection_name as conn
from
aws_dynamodb_table
where
not deletion_protection_enabled;

Schedule

15m

Tags

category = Compliance
mod = aws
service = AWS/DynamoDB