ansible/filter_plugins/validators.py

12 lines
234 B
Python
Raw Normal View History

2022-09-05 10:18:43 +02:00
class FilterModule:
def filters(self):
return {
"choices": choices,
}
def choices(value, choices):
if value not in choices:
raise ValueError(f"{value} not in {choices}")
return value