├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── delete-default-vpc ├── README.md └── delete-default-vpcs.py ├── ebs-encryption ├── README.md └── enable-ebs-default-encryption.py ├── guardduty ├── README.md └── enable-guardduty.py ├── inactive-iam-users ├── README.md ├── disable-inactive-keys.py └── disable-inactive-login.py ├── kms-key-rotation ├── README.md └── enable-kms-key-rotation.py ├── org-delegation ├── README.md ├── delegate-admin.py └── delegate-guardduty.py ├── requirements.txt ├── s3-block-public-access ├── README.md └── enable-s3-block-public-access.py ├── s3-bucket-default-encryption ├── README.md └── enable-s3-bucket-default-encryption.py ├── ssm-role ├── README.md └── ssm-role.py └── vpc-flow-logs ├── README.md └── enable-vpc-flowlogs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/README.md -------------------------------------------------------------------------------- /delete-default-vpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/delete-default-vpc/README.md -------------------------------------------------------------------------------- /delete-default-vpc/delete-default-vpcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/delete-default-vpc/delete-default-vpcs.py -------------------------------------------------------------------------------- /ebs-encryption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/ebs-encryption/README.md -------------------------------------------------------------------------------- /ebs-encryption/enable-ebs-default-encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/ebs-encryption/enable-ebs-default-encryption.py -------------------------------------------------------------------------------- /guardduty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/guardduty/README.md -------------------------------------------------------------------------------- /guardduty/enable-guardduty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/guardduty/enable-guardduty.py -------------------------------------------------------------------------------- /inactive-iam-users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/inactive-iam-users/README.md -------------------------------------------------------------------------------- /inactive-iam-users/disable-inactive-keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/inactive-iam-users/disable-inactive-keys.py -------------------------------------------------------------------------------- /inactive-iam-users/disable-inactive-login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/inactive-iam-users/disable-inactive-login.py -------------------------------------------------------------------------------- /kms-key-rotation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/kms-key-rotation/README.md -------------------------------------------------------------------------------- /kms-key-rotation/enable-kms-key-rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/kms-key-rotation/enable-kms-key-rotation.py -------------------------------------------------------------------------------- /org-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/org-delegation/README.md -------------------------------------------------------------------------------- /org-delegation/delegate-admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/org-delegation/delegate-admin.py -------------------------------------------------------------------------------- /org-delegation/delegate-guardduty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/org-delegation/delegate-guardduty.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/requirements.txt -------------------------------------------------------------------------------- /s3-block-public-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/s3-block-public-access/README.md -------------------------------------------------------------------------------- /s3-block-public-access/enable-s3-block-public-access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/s3-block-public-access/enable-s3-block-public-access.py -------------------------------------------------------------------------------- /s3-bucket-default-encryption/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/s3-bucket-default-encryption/README.md -------------------------------------------------------------------------------- /s3-bucket-default-encryption/enable-s3-bucket-default-encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/s3-bucket-default-encryption/enable-s3-bucket-default-encryption.py -------------------------------------------------------------------------------- /ssm-role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/ssm-role/README.md -------------------------------------------------------------------------------- /ssm-role/ssm-role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/ssm-role/ssm-role.py -------------------------------------------------------------------------------- /vpc-flow-logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/vpc-flow-logs/README.md -------------------------------------------------------------------------------- /vpc-flow-logs/enable-vpc-flowlogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WarnerMedia/aws-fast-fixes/HEAD/vpc-flow-logs/enable-vpc-flowlogs.py --------------------------------------------------------------------------------