Report this

What is the reason for this report?

Ansible Network config templates with Dynamic variables

Posted on July 1, 2018

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.

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:

---
- hosts: localhost
  vars_prompt:
    - name: "some_password"
      prompt: "Enter password"

  tasks:
    - debug:
        msg: "{{ some_password }}"

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.