├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── EnableGuardDuty.yaml ├── LICENSE ├── NOTICE ├── README.md ├── disableguardduty.py ├── enableguardduty.py └── updatefeatures.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EnableGuardDuty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/EnableGuardDuty.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/README.md -------------------------------------------------------------------------------- /disableguardduty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/disableguardduty.py -------------------------------------------------------------------------------- /enableguardduty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/enableguardduty.py -------------------------------------------------------------------------------- /updatefeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-guardduty-multiaccount-scripts/HEAD/updatefeatures.py --------------------------------------------------------------------------------