Files
trivy/policy/testdata/namespace_exception/exceptions.rego
Teppei Fukuda cb66108f4d fix(config): change selector type (fanal#189)
* fix(config): change selector type

* test(policy): fix test data
2021-06-28 14:52:57 +03:00

9 lines
135 B
Rego

package namespace.exceptions
import data.namespaces
exception[ns] {
ns := data.namespaces[_]
ns == "testdata.kubernetes.xyz_100"
}