9 lines
235 B
YAML
9 lines
235 B
YAML
---
|
|
- name: Assert volume_uid and volume_gid are strings
|
|
ansible.builtin.assert:
|
|
that:
|
|
- volume_uid is string
|
|
- volume_gid is string
|
|
fail_msg: "volume_uid and volume_gid must be strings, not int."
|
|
quiet: true
|