opa
opa copied to clipboard
Open Policy Agent (OPA) is an open source, general-purpose policy engine.
From a discussion with @klauern in the OPA Slack, and from my own experiences working with tests in policy repositories, we think the OPA test runner could be improved for...
## What part of OPA would you like to see improved? Delta Bundle functionality Allow pattern matching in setting the snapshot and delta bundle resource in configuration so that there...
Today `opa bench` measures the performance of the inner-most evaluation call. This is useful because it provides an upper-bound on performance for a particular policy by ignoring things like server...
The query API handler (ie. v1DataPost) should accept client requests even when OPA is performing bundle activation. A recent [change](https://github.com/open-policy-agent/opa/pull/4769) updated `v1DataPost` handler to open a read txn on the...
Golang 1.13 introduced new features to the errors package that largely match the capabilities provided by the github.com/pkg/errors package. It would be good to remove this unnecessary dependency to a...
## What part of OPA would you like to see improved? I would like to avoid having to overwrite the container command line to customize the execution for an environment....
It would be nice if we can add playground capabilities to the OPA CLI, for example, publish, also, open the local folder on the playground page. ## Expected Behavior ```bash...
The MISCELLANEOUS top-level section in the docs navigation has grown organically over time. It feels like it's time to reorganize the content under MISCELLANEOUS that it's easier for people to...
With the schema support expanding on OPA/Rego to include annotations on rules, it would be useful to include a docs page on annotations. Perhaps it could exist on the existing...
While playing around with `graph.reachable_paths`, I noticed that traversing into "neighbors" only seems to work for the root node, not neighboring nodes encountered along the way. The below example correctly...