You must be logged in to view saved presets
Configuration to enable Amazon GuardDuty as a member account and accept an invitation from a master GuardDuty account
Amazon GuardDuty is a threat detection service that continuously monitors for malicious activity and unauthorized behavior to protect your AWS accounts, workloads, and data stored in Amazon S3.AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
GuardDuty:
Type: 'AWS::GuardDuty::Detector'
Properties:
Enable: true
DataSources:
S3Logs:
Enable: true
GuardDutyMaster:
Type: 'AWS::GuardDuty::Master'
Properties:
DetectorId:
Ref: GuardDuty
MasterId: ''
Parameters: {}
Metadata: {}
Conditions: {}