diff --git a/awx/main/credential_plugins/aim.py b/awx/main/credential_plugins/aim.py index 7e30b1b69d..be0232357f 100644 --- a/awx/main/credential_plugins/aim.py +++ b/awx/main/credential_plugins/aim.py @@ -9,7 +9,7 @@ aim_inputs = { 'fields': [ { 'id': 'url', - 'label': _('CyberArk AIM URL'), + 'label': _('CyberArk CCP URL'), 'type': 'string', 'format': 'url', }, @@ -17,7 +17,7 @@ aim_inputs = { 'id': 'webservice_id', 'label': _('Web Service ID'), 'type': 'string', - 'help_text': _('The AIM Web Service ID. Default: AIMWebService'), + 'help_text': _('The CCP Web Service ID. Leave blank to default to AIMWebService.'), }, { 'id': 'app_id', diff --git a/awx/ui/src/screens/Credential/shared/data.credentialTypes.json b/awx/ui/src/screens/Credential/shared/data.credentialTypes.json index 98c375aa2c..f67ed8ac68 100644 --- a/awx/ui/src/screens/Credential/shared/data.credentialTypes.json +++ b/awx/ui/src/screens/Credential/shared/data.credentialTypes.json @@ -465,7 +465,7 @@ }, "created": "2020-05-18T21:53:35.370730Z", "modified": "2020-05-18T21:54:05.436400Z", - "name": "CyberArk AIM Central Credential Provider Lookup", + "name": "CyberArk Central Credential Provider Lookup", "description": "", "kind": "external", "namespace": "aim", diff --git a/awx_collection/plugins/modules/credential.py b/awx_collection/plugins/modules/credential.py index 8c962ce82e..4e7f02e558 100644 --- a/awx_collection/plugins/modules/credential.py +++ b/awx_collection/plugins/modules/credential.py @@ -52,7 +52,7 @@ options: - The credential type being created. - Can be a built-in credential type such as "Machine", or a custom credential type such as "My Credential Type" - Choices include Amazon Web Services, Ansible Galaxy/Automation Hub API Token, Centrify Vault Credential Provider Lookup, - Container Registry, CyberArk AIM Central Credential Provider Lookup, CyberArk Conjur Secret Lookup, Google Compute Engine, + Container Registry, CyberArk Central Credential Provider Lookup, CyberArk Conjur Secret Lookup, Google Compute Engine, GitHub Personal Access Token, GitLab Personal Access Token, GPG Public Key, HashiCorp Vault Secret Lookup, HashiCorp Vault Signed SSH, 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, diff --git a/awx_collection/tests/integration/targets/credential_input_source/tasks/main.yml b/awx_collection/tests/integration/targets/credential_input_source/tasks/main.yml index 03557ee0e1..e9066a0f2a 100644 --- a/awx_collection/tests/integration/targets/credential_input_source/tasks/main.yml +++ b/awx_collection/tests/integration/targets/credential_input_source/tasks/main.yml @@ -14,7 +14,7 @@ credential: description: Credential for Testing Source name: "{{ src_cred_name }}" - credential_type: CyberArk AIM Central Credential Provider Lookup + credential_type: CyberArk Central Credential Provider Lookup inputs: url: "https://cyberark.example.com" app_id: "My-App-ID" @@ -58,7 +58,7 @@ credential: description: Credential for Testing Source Change name: "{{ src_cred_name }}-2" - credential_type: CyberArk AIM Central Credential Provider Lookup + credential_type: CyberArk Central Credential Provider Lookup inputs: url: "https://cyberark-prod.example.com" app_id: "My-App-ID" @@ -92,7 +92,7 @@ credential: name: "{{ src_cred_name }}" organization: Default - credential_type: CyberArk AIM Central Credential Provider Lookup + credential_type: CyberArk Central Credential Provider Lookup state: absent register: result @@ -100,7 +100,7 @@ credential: name: "{{ src_cred_name }}-2" organization: Default - credential_type: CyberArk AIM Central Credential Provider Lookup + credential_type: CyberArk Central Credential Provider Lookup state: absent register: result