0.0.4 • Published 2 months ago

@spensireli/cdk-guardduty v0.0.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months ago

cdk-guardduty

codecov

Enables GuardDuty and allows for enabling of all or some features.

By default

  • GuardDuty Detector is Created
  • GuardDuty Detector is Enabled
  • Kubernetes Audit Log Monitoring is Enabled
  • Malware Protection Monitoring is Enabled
  • S3 Logs Monitoring is Enabled
  • Runtime Monitoring is Enabled

Example

Default Enable All

import { GuardDutyConstruct } from '@spensireli/cdk-guardduty';
new GuardDutyConstruct(stack, 'GuardDutyConstructTest');

Choose Features to Enable

import { GuardDutyConstruct } from '@spensireli/cdk-guardduty';
new GuardDutyConstruct(stack, 'GuardDutyConstructTest', {
    enableGuardDuty: true,
    kubernetesAuditLogs: true,
    malwareProtection: true,
    s3Logs: true,
  });
0.0.1

2 months ago

0.0.3

2 months ago

0.0.2

2 months ago

0.0.4

2 months ago

0.0.0

10 months ago