Fix bigip_user module's doc. Adding log-manager role to partition_acc…#10
Open
mahoutukaisali wants to merge 1 commit into
Open
Fix bigip_user module's doc. Adding log-manager role to partition_acc…#10mahoutukaisali wants to merge 1 commit into
mahoutukaisali wants to merge 1 commit into
Conversation
…ess parameter's description. Signed-off-by: loh <loh@redhat.com>
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:
This PR updates the documentation for the
f5networks.f5_modules.bigip_usermodule to include a missing valid choice.The Problem:
The
DOCUMENTATIONstring for thebigip_usermodule'spartition_accessparameter does not listlog-manageras a validchoicefor therolesub-option.Here is the F5 BIG-IP v17.x documentation for the user's roles: https://techdocs.f5.com/en-us/bigip-17-0-0/big-ip-systems-user-account-administration/user-roles.html
The Fix:
According to our testing on BIG-IP v17.x (and confirmed by the user in this playbook), the
log-managerrole is indeed accepted by the API when set as a partition role.Example Playbook:
This PR adds
log-managerto thechoiceslist, so that the generated documentation on docs.ansible.com reflects the module's actual capabilities.