mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix ec2_win_password to allow blank key_passphrase (#28791)
This commit is contained in:
@@ -133,7 +133,10 @@ def main():
|
||||
|
||||
instance_id = module.params.get('instance_id')
|
||||
key_file = module.params.get('key_file')
|
||||
b_key_passphrase = to_bytes(module.params.get('key_passphrase'), errors='surrogate_or_strict')
|
||||
if module.params.get('key_passphrase') is None:
|
||||
b_key_passphrase = None
|
||||
else:
|
||||
b_key_passphrase = to_bytes(module.params.get('key_passphrase'), errors='surrogate_or_strict')
|
||||
wait = module.params.get('wait')
|
||||
wait_timeout = int(module.params.get('wait_timeout'))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user