Would like to know whether I can use these two rls rules interchangeably?
if (ts_groups = "test_group") then true else false
if (ts_groups = "test_group") then true else false
if ("test_group" = ts_groups) then true else false
if ("test_group" = ts_groups) then true else false
Basically, ts_groups and "test_group" are reversed. My understanding is that the latter rule is correct. But not sure whether the former rule achieves the same result or can cause any unexpected behaviors.