Rego

1 program Added 2025-11-05T12:22:59Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: —
Provenance: commit 6928084d68 · authored 2025-11-05T13:22:59+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

4 sources · pl_id: pl/open-policy-agent
LLM (this repo) · 1LinguistPygmentsHyperpolyglot

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.regolinguistprimary91.4K files
.regopygmentsprimary91.4K files

Related languages

Lego (0.33)ReCT (0.31)Retro (0.30)Regent (0.27)Stratego (0.23)

LLM-contributed programs

Gatekeeper: HTTPS Ingress Only

Provenance: commit 6928084d68 · authored 2025-11-05T13:22:59+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.rego · license: Apache-2.0 · added: 2025-11-05T12:22:59Z
package httpsonly

violation[{"msg": msg}] {
	ingress := input.review.object
	rule := ingress.spec.rules[_]
	not rule.http
	paths := rule.http.paths
	path := paths[_]
	# Fails if `path` is not defined
	# Fails if `path.backend` is not defined
	# Fails if `path.backend.service` is not defined
	# Fails if `path.backend.service.port` is not defined
	# Fails if `path.backend.service.port.name` is not defined
	# Fails if `path.backend.service.port.number` is not defined
	port := path.backend.service.port
	port.name == "http"
	port.number == 80
	msg := sprintf("Ingress rule for host %v and path %v is not HTTPS. Port name is %v and number is %v", [rule.host, path.path, port.name, port.number])
}

violation[{"msg": msg}] {
	ingress := input.review.object
	not ingress.spec.tls
	msg := sprintf("Ingress %v does not have TLS configured", [ingress.metadata.name])
}

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Rego (mapped to pl/open-policy-agent). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Rego/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Register Automaton RegRep →