I have a working playbook using roles to create a router config based on the varisables I statically put in but want to have it prompt me for those values. I’ve tried using vars_prompt but doesn’t seem to work I think I’m not putting those commands in the right place.So basically is there a way to do this?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
There is an example which you have probably seen at https://github.com/ansible/ansible-examples/blob/master/language_features/prompts.yml which uses
vars_prompt
which may be helpful as a reference.I usually use the debug module if I am unsure if a variable is reading in the proper values. You’ve probably used that module before, but the documentation for that is at https://docs.ansible.com/ansible/latest/modules/debug_module.html.
Based on the above examples, one test that you could use might look like this: