├── LICENSE ├── README.md ├── _config.yml ├── _layouts └── default.html └── terraform ├── .editorconfig ├── .gitignore ├── README.md ├── main.tf ├── modules ├── rules │ ├── eventbridge-rule.tf │ └── variables.tf └── sns_topic │ ├── main.tf │ └── outputs.tf ├── rules ├── ct-access-credentials.tf ├── ct-access-federation.tf ├── ct-access-policy-version.tf ├── ct-access-principal-policies.tf ├── ct-access-root-account-activity.tf ├── ct-access-root-console-login.tf ├── ct-access-trust-policy.tf ├── ct-data-ec2.tf ├── ct-data-s3-object-management copy.tf ├── ct-data-s3-permissions.tf ├── ct-disruption-access-analyzer.tf ├── ct-disruption-cloudtrail.tf ├── ct-disruption-cloudwatch.tf ├── ct-disruption-config.tf ├── ct-disruption-guardduty.tf ├── ct-disruption-inspector.tf ├── ct-disruption-macie2.tf ├── ct-disruption-organizations.tf ├── ct-disruption-security-hub-findings.tf ├── ct-disruption-security-hub.tf ├── ct-disruption-vpcflowlogs.tf ├── ct-network-gateway.tf ├── ct-network-mirror.tf ├── ct-network-routing.tf ├── ct-service-lambda.tf └── variables.tf └── terragrunt.hcl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /terraform/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/.editorconfig -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/.gitignore -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/modules/rules/eventbridge-rule.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/modules/rules/eventbridge-rule.tf -------------------------------------------------------------------------------- /terraform/modules/rules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/modules/rules/variables.tf -------------------------------------------------------------------------------- /terraform/modules/sns_topic/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/modules/sns_topic/main.tf -------------------------------------------------------------------------------- /terraform/modules/sns_topic/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/modules/sns_topic/outputs.tf -------------------------------------------------------------------------------- /terraform/rules/ct-access-credentials.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-access-credentials.tf -------------------------------------------------------------------------------- /terraform/rules/ct-access-federation.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-access-federation.tf -------------------------------------------------------------------------------- /terraform/rules/ct-access-policy-version.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-access-policy-version.tf -------------------------------------------------------------------------------- /terraform/rules/ct-access-principal-policies.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-access-principal-policies.tf -------------------------------------------------------------------------------- /terraform/rules/ct-access-root-account-activity.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-access-root-account-activity.tf -------------------------------------------------------------------------------- /terraform/rules/ct-access-root-console-login.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-access-root-console-login.tf -------------------------------------------------------------------------------- /terraform/rules/ct-access-trust-policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-access-trust-policy.tf -------------------------------------------------------------------------------- /terraform/rules/ct-data-ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-data-ec2.tf -------------------------------------------------------------------------------- /terraform/rules/ct-data-s3-object-management copy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-data-s3-object-management copy.tf -------------------------------------------------------------------------------- /terraform/rules/ct-data-s3-permissions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-data-s3-permissions.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-access-analyzer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-access-analyzer.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-cloudtrail.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-cloudtrail.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-cloudwatch.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-cloudwatch.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-config.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-guardduty.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-guardduty.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-inspector.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-inspector.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-macie2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-macie2.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-organizations.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-organizations.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-security-hub-findings.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-security-hub-findings.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-security-hub.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-security-hub.tf -------------------------------------------------------------------------------- /terraform/rules/ct-disruption-vpcflowlogs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-disruption-vpcflowlogs.tf -------------------------------------------------------------------------------- /terraform/rules/ct-network-gateway.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-network-gateway.tf -------------------------------------------------------------------------------- /terraform/rules/ct-network-mirror.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-network-mirror.tf -------------------------------------------------------------------------------- /terraform/rules/ct-network-routing.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-network-routing.tf -------------------------------------------------------------------------------- /terraform/rules/ct-service-lambda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/ct-service-lambda.tf -------------------------------------------------------------------------------- /terraform/rules/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/rules/variables.tf -------------------------------------------------------------------------------- /terraform/terragrunt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easttimor/aws-incident-response/HEAD/terraform/terragrunt.hcl --------------------------------------------------------------------------------