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,19 +14,21 @@ Here is a most basic example::
--- ---
- hosts: all - hosts: all
remote_user: root vars_prompt:
- name: username
prompt: "What is your username?"
private: no
vars: - name: password
from: "camelot" prompt: "What is your password?"
vars_prompt: tasks:
- name: "name"
prompt: "what is your name?"
- name: "quest"
prompt: "what is your quest?"
- name: "favcolor"
prompt: "what is your favorite color?"
- debug:
msg: 'Logging in as {{ username }}'
The user input is hidden by default but it can be made visible by setting ``private: no``.
.. note:: .. 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. 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.
@ -41,19 +43,6 @@ the default argument::
prompt: "Product release version" prompt: "Product release version"
default: "1.0" 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 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:: entered value so you can use it, for instance, with the user module to define a password::

Loading…
Cancel
Save