Fix query and tests (#17)

This commit is contained in:
James Carnegie
2024-05-02 16:03:59 +01:00
committed by GitHub
parent bc7139deaa
commit 0cadeefe6f
8 changed files with 8 additions and 7 deletions

View File

@@ -29,7 +29,7 @@ type regoEvaluator struct {
func NewRegoEvaluator(debug bool) PolicyEvaluator {
return &regoEvaluator{
debug: debug,
query: "data.attestations.allow",
query: "data.attest.allow",
}
}