Multiple choice variable to specify folder rights in Ansible Tower
I have a playbook that creates a directory in Ansible Tower. I have a survey with a multiple choice options to choose the permission for this folder. The playbook is: – name: Create a directory hosts: localhost become_user: root tasks: – name: Create directory file: path: /test state: directory mode: u={{ user_perm }},g={{ group_perm }},o={{… Read More Multiple choice variable to specify folder rights in Ansible Tower