Open
Conversation
Contributor
|
The test The test |
Contributor
Author
|
The |
Contributor
|
The test |
Removed the extras variable lookups for the winrm connection plugin. All valid options are explicitly documented and will no longer be looked up with the ansible_winrm_* variable names. This should have any impact of people using these variables as all existing options have been explicitly defined and will continue to work as before.
c42f9dd to
d306090
Compare
Member
|
|
Contributor
Author
mattclay
reviewed
Sep 6, 2024
| auth but over a HTTP or HTTPS connection respectively. | ||
| type: list | ||
| elements: string | ||
| elements: str |
Member
There was a problem hiding this comment.
Is there a reason not to use choices to indicate the valid options covered in the description?
bcoca
reviewed
Sep 6, 2024
| - The choices available depend on your version of pywinrm | ||
| - This can be set to C(basic), C(certificate), C(ntlm), C(kerberos), C(credssp). | ||
| - It can also be set to C(plaintext) or C(ssl) but these values will use use C(basic) | ||
| auth but over a HTTP or HTTPS connection respectively. |
Member
There was a problem hiding this comment.
Suggested change
| auth but over a HTTP or HTTPS connection respectively. | |
| choices: | |
| basic: User and password are sent in plain text to the target | |
| certificate: Uses certificates | |
| credssp: Credential Security Support Provider, or credential delegation from the local computer to the target | |
| kerberos: Use kerberos 3 party authentication server | |
| ntlm: NT Lan manager authentication | |
| plaintext: Equals using `basic` over HTTP | |
| ssl: The same as `basic` over HTTPS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
SUMMARY
Removed the extras variable lookups for the winrm connection plugin. All valid options are explicitly documented and will no longer be looked up with the ansible_winrm_* variable names. This should have no impact on people using these variables as all existing options have been explicitly defined and will continue to work as before.
ISSUE TYPE
ADDITIONAL INFORMATION
The aim of this PR is to remove the usage of
_extrasfunctionality so it can be deprecated and eventually removed.