mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
changes the nxapi argument spec to require url_password
This commit is contained in:
parent
d3d36eb766
commit
f88273eb87
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ def nxapi_argument_spec(spec=None):
|
|||
host=dict(required=True),
|
||||
port=dict(),
|
||||
url_username=dict(required=True, aliases=['username']),
|
||||
url_password=dict(required=False, aliases=['password']),
|
||||
url_password=dict(required=True, aliases=['password']),
|
||||
use_ssl=dict(default=False, type='bool'),
|
||||
command_type=dict(default='cli_show_ascii', choices=NXAPI_COMMAND_TYPES)
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue