I'm learning OPA and rego. I'm trying to write a simple policy and have the same evaluated through VSCode Plugin. Folder Structure: learning.rego package learn
In REGO language how can we validate if an input exists? I got one way to do this. package play default hello = false hello { input.message } But is this