Skip to content

Commit

Permalink
fix auth reference in modules to an doc fragment that exists
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-m-sullivan committed Nov 11, 2024
1 parent 89ab7d1 commit 746e283
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion plugins/modules/controller_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
and re-creates the token when existing controller token is found.
This will cause module to report changed, every time update is called.
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""

EXAMPLES = r"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/credential.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
choices: ["present", "absent"]
type: str
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
notes:
- M(ansible.eda.credential) supports AAP 2.5 and onwards.
"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/credential_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
type: str
required: false
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
notes:
- M(ansible.eda.credential_info) supports AAP 2.5 and onwards.
"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/credential_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
choices: ["present", "absent"]
type: str
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
notes:
- M(ansible.eda.credential_type) supports AAP 2.5 and onwards.
"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/credential_type_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
type: str
required: false
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
notes:
- M(ansible.eda.credential_type_info) supports AAP 2.5 and onwards.
"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/decision_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
aliases:
- organization
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""

EXAMPLES = r"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/decision_environment_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- The name of the decision environment.
type: str
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""

EXAMPLES = r"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/event_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
choices: ["present", "absent"]
type: str
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
notes:
- M(ansible.eda.event_stream) supports AAP 2.5 and onwards.
"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/event_stream_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
type: str
required: false
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
notes:
- M(ansible.eda.event_stream_info) supports AAP 2.5 and onwards.
"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
default: False
version_added: 2.2.0
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""

EXAMPLES = r"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/project_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- Return information about particular project available on EDA Controller.
type: str
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""

EXAMPLES = r"""
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/rulebook_activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
choices: ["present", "absent"]
type: str
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
notes:
- Rulebook Activation API does not support PATCH method, due to this reason the module will
not perform any modification when an existing rulebook activation is found.
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/rulebook_activation_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
type: str
required: false
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""


Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/rulebook_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
aliases:
- project
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""


Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
type: list
elements: str
extends_documentation_fragment:
- ansible.eda.eda_controller.auths
- ansible.eda.eda_controller.eda_controller
"""

EXAMPLES = r"""
Expand Down

0 comments on commit 746e283

Please sign in to comment.