Fix vars_prompt "private" description and improve example (#47688)

* Fix vars_prompts "private" description and improve example

* Fix indentation
pull/48006/head
Risto Oikarinen 6 years ago committed by Sandra McCann
parent f6309d19a3
commit 4b2a090418

@ -14,25 +14,27 @@ Here is a most basic example::
---
- hosts: all
remote_user: root
vars_prompt:
vars:
from: "camelot"
- name: username
prompt: "What is your username?"
private: no
vars_prompt:
- name: "name"
prompt: "what is your name?"
- name: "quest"
prompt: "what is your quest?"
- name: "favcolor"
prompt: "what is your favorite color?"
- name: password
prompt: "What is your password?"
tasks:
- debug:
msg: 'Logging in as {{ username }}'
The user input is hidden by default but it can be made visible by setting ``private: no``.
.. note::
Prompts for individual ``vars_prompt`` variables will be skipped for any variable that is already defined through the command line ``--extra-vars`` option, or when running from a non-interactive session (such as cron or Ansible Tower). See :ref:`passing_variables_on_the_command_line` in the /Variables/ chapter.
If you have a variable that changes infrequently, it might make sense to
provide a default value that can be overridden. This can be accomplished using
provide a default value that can be overridden. This can be accomplished using
the default argument::
vars_prompt:
@ -41,19 +43,6 @@ the default argument::
prompt: "Product release version"
default: "1.0"
An alternative form of vars_prompt allows for hiding input from the user, and may later support
some other options, but otherwise works equivalently::
vars_prompt:
- name: "some_password"
prompt: "Enter password"
private: yes
- name: "release_version"
prompt: "Product release version"
private: no
If `Passlib <https://passlib.readthedocs.io/en/stable/>`_ is installed, vars_prompt can also encrypt the
entered value so you can use it, for instance, with the user module to define a password::

Loading…
Cancel
Save