问题 I would like to select a specific variable based on user input in an Ansible playbook. Specifically, I would like to ask for user input on a location of a server, and then execute a specific action based on the input. This is the current ansible playbook: - hosts: all remote_user: root gather_facts: True vars: loc1: "10.13.1.140" loc2: "10.13.1.141" loc3: "10.13.1.142" vars_prompt: - name: location prompt: "Location of server? Input options: loc1/loc2/loc3" private: no tasks: - name: Test