mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Template the variable prompt to customize the message
We have a password-prompt for a configurable login name. Since we require to ask the password for this specific login, it is important to indicate what password needs to be prov ided on the prompt. So the prompt needs to be templated. That's what this patch does.
This commit is contained in:
parent
3939f7a812
commit
069feb5d9c
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ class Play(object):
|
|||
raise errors.AnsibleError("'vars_prompt' item is missing 'name:'")
|
||||
|
||||
vname = var['name']
|
||||
prompt = "%s: " % var.get("prompt", vname)
|
||||
prompt = util.template(None, "%s: " % var.get("prompt", vname), self.vars)
|
||||
private = var.get("private", True)
|
||||
|
||||
confirm = var.get("confirm", False)
|
||||
|
|
Loading…
Reference in a new issue