├── .gitignore ├── LICENSE ├── README.md ├── local-exec └── aws_organizations_organization_enabled_policies.py ├── main.tf ├── org.tf ├── policy.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/README.md -------------------------------------------------------------------------------- /local-exec/aws_organizations_organization_enabled_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/local-exec/aws_organizations_organization_enabled_policies.py -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/main.tf -------------------------------------------------------------------------------- /org.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/org.tf -------------------------------------------------------------------------------- /policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/policy.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gblues/aws-ml-opt-out/HEAD/variables.tf --------------------------------------------------------------------------------