Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify purpose with better comments #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions modules/required_modules.rego
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Enforce that specificied resource types are only created by specific modules and not in the root module.
# Enforce that only specific modules be used to provision different resource
# types by denying all other modules in the root module from creating them.

package terraform

import input.tfplan as tfplan


# Map of resource types which must be created only using module
# with corresponding module source
# Map of resource types to paths to each module
# you want to enforce usage of.
resource_modules = {
"aws_db_instance": "terraform-aws-modules/rds/aws"
}
Expand Down