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

How to pass variable data through Ansible Tower API to a playbook template

We use Ansible Tower for Operations to perform process restarts. If they receive an alert says a process stopped, they execute an Ansible Tower job and supply the host name and process name from the alert as "survey" variables. [A lot more happens, we don’t just blindly restart every failure.] I want to automate this… Read More How to pass variable data through Ansible Tower API to a playbook template