diff options
author | lucas-benedito <55454581+lucas-benedito@users.noreply.github.com> | 2023-11-13 16:54:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 16:54:32 +0100 |
commit | 14f636af8408c78ce1c50ff2e4dbe5b37b710e87 (patch) | |
tree | 35a38495698b053b9aa00aaae653ce3c279b8837 /awx_collection/plugins/modules | |
parent | Docs: Include REST API reference content from swagger.json (#14607) (diff) | |
download | awx-14f636af8408c78ce1c50ff2e4dbe5b37b710e87.tar.xz awx-14f636af8408c78ce1c50ff2e4dbe5b37b710e87.zip |
Setting credential_type as required (#14651)
* Setting credential_type as required
* Added test for missing credential_type in credential module
* Corrected test assertion
---------
Co-authored-by: Lucas Benedito <lbenedit@redhat.com>
Diffstat (limited to 'awx_collection/plugins/modules')
-rw-r--r-- | awx_collection/plugins/modules/credential.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awx_collection/plugins/modules/credential.py b/awx_collection/plugins/modules/credential.py index f55574a009..b5fbfe9a4e 100644 --- a/awx_collection/plugins/modules/credential.py +++ b/awx_collection/plugins/modules/credential.py @@ -58,6 +58,7 @@ options: Insights, Machine, Microsoft Azure Key Vault, Microsoft Azure Resource Manager, Network, OpenShift or Kubernetes API Bearer Token, OpenStack, Red Hat Ansible Automation Platform, Red Hat Satellite 6, Red Hat Virtualization, Source Control, Thycotic DevOps Secrets Vault, Thycotic Secret Server, Vault, VMware vCenter, or a custom credential type + required: True type: str inputs: description: @@ -214,7 +215,7 @@ def main(): copy_from=dict(), description=dict(), organization=dict(), - credential_type=dict(), + credential_type=dict(required=True), inputs=dict(type='dict', no_log=True), update_secrets=dict(type='bool', default=True, no_log=False), user=dict(), |