Created
July 8, 2026 08:59
-
-
Save Dirga36/e8123bac12c1582c83b8b5e38cf61d5c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package terraform.finops | |
| deny[msg] { | |
| resource := input.resource_changes[_] | |
| resource.type == "aws_instance" | |
| allowed_types := {"t3.micro", "t3.small", "t3.medium"} | |
| not allowed_types[resource.change.after.instance_type] | |
| msg := sprintf( | |
| "Instance type %v is not in the approved list for this environment", | |
| [resource.change.after.instance_type] | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment