mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 01:03:09 +00:00
Fix default nxapi port setting when use_ssl set (#28236)
* Fix port setting when use_ssl set
This commit is contained in:
committed by
Nathaniel Case
parent
bcb9644f39
commit
8f4bc8150f
@@ -93,7 +93,10 @@ class ActionModule(_ActionModule):
|
||||
provider['host'] = self._play_context.remote_addr
|
||||
|
||||
if provider.get('port') is None:
|
||||
provider['port'] = 80
|
||||
if provider.get('use_ssl'):
|
||||
provider['port'] = 443
|
||||
else:
|
||||
provider['port'] = 80
|
||||
|
||||
if provider.get('timeout') is None:
|
||||
provider['timeout'] = self._play_context.timeout
|
||||
|
||||
Reference in New Issue
Block a user