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?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
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: