mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
The correct option is password_file. Fixes #8752
This commit is contained in:
parent
500d8f1e71
commit
206c201d87
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ def execute_decrypt(args, options, parser):
|
|||
if not options.password_file:
|
||||
password, new_password = utils.ask_vault_passwords(ask_vault_pass=True)
|
||||
else:
|
||||
password = utils.read_vault_file(options.vault_password_file)
|
||||
password = utils.read_vault_file(options.password_file)
|
||||
|
||||
cipher = 'AES256'
|
||||
if hasattr(options, 'cipher'):
|
||||
|
|
Loading…
Reference in a new issue