Files
regorus/tests/tmp-files-to-be-added-as-yaml-tests/rule_assign_0.rego
T
Anand Krishnamoorthi cb0b3a1790 Code from github.com/anakrish/rego-rs
Authored by anakrish and mingweishih

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
2023-02-09 10:56:54 -08:00

26 lines
327 B
Rego

package test
no_assign {
input.date == "12/1/2022"
}
assign_null = null {
input.date == "12/1/2022"
}
assign_bool = false {
input.date == "12/1/2022"
}
assign_int = 101 {
input.date == "12/1/2022"
}
assign_float = 3.14 {
input.date == "12/1/2022"
}
assign_string = "test_string" {
input.date == "12/1/2022"
}