1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fixes variable usage in bigip device trust (#40975)

Variable used was incorrectly named
This commit is contained in:
Tim Rupp 2018-05-31 14:40:21 -07:00 committed by GitHub
parent bcabbe33c8
commit 0cecc08886
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -232,7 +232,7 @@ class ModuleManager(object):
if self.want.password:
return self.password
if self.want.provider.get('password', None):
return self.provider.get('password')
return self.want.provider.get('password')
if self.module.params.get('password', None):
return self.module.params.get('password')