├── LICENSE ├── README.md ├── main.tf └── policy ├── aws_common.rego ├── aws_s3_account_public_access_block.rego ├── aws_s3_bucket.rego ├── aws_security_group.rego ├── aws_security_group_rule.rego ├── main.rego └── util.rego /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/main.tf -------------------------------------------------------------------------------- /policy/aws_common.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/policy/aws_common.rego -------------------------------------------------------------------------------- /policy/aws_s3_account_public_access_block.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/policy/aws_s3_account_public_access_block.rego -------------------------------------------------------------------------------- /policy/aws_s3_bucket.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/policy/aws_s3_bucket.rego -------------------------------------------------------------------------------- /policy/aws_security_group.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/policy/aws_security_group.rego -------------------------------------------------------------------------------- /policy/aws_security_group_rule.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/policy/aws_security_group_rule.rego -------------------------------------------------------------------------------- /policy/main.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/policy/main.rego -------------------------------------------------------------------------------- /policy/util.rego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mjlshen/terraform-aws-opa/HEAD/policy/util.rego --------------------------------------------------------------------------------