Allow templates in ansible_sudo_pass inventory var
Template ansible_sudo_pass the same way we template ansible_ssh_pass.
This commit is contained in:
parent
61d283e2ad
commit
ce0b5d16b3
1 changed files with 2 additions and 0 deletions
|
@ -688,6 +688,8 @@ class Runner(object):
|
||||||
# user/pass may still contain variables at this stage
|
# user/pass may still contain variables at this stage
|
||||||
actual_user = template.template(self.basedir, actual_user, inject)
|
actual_user = template.template(self.basedir, actual_user, inject)
|
||||||
actual_pass = template.template(self.basedir, actual_pass, inject)
|
actual_pass = template.template(self.basedir, actual_pass, inject)
|
||||||
|
self.sudo_pass = template.template(self.basedir, self.sudo_pass, inject)
|
||||||
|
|
||||||
|
|
||||||
# make actual_user available as __magic__ ansible_ssh_user variable
|
# make actual_user available as __magic__ ansible_ssh_user variable
|
||||||
inject['ansible_ssh_user'] = actual_user
|
inject['ansible_ssh_user'] = actual_user
|
||||||
|
|
Loading…
Reference in a new issue