mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Fixes variable usage in bigip device trust (#40975)
Variable used was incorrectly named
This commit is contained in:
@@ -232,7 +232,7 @@ class ModuleManager(object):
|
|||||||
if self.want.password:
|
if self.want.password:
|
||||||
return self.password
|
return self.password
|
||||||
if self.want.provider.get('password', None):
|
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):
|
if self.module.params.get('password', None):
|
||||||
return self.module.params.get('password')
|
return self.module.params.get('password')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user