diff --git a/src/awx_plugins/credentials/plugins.py b/src/awx_plugins/credentials/plugins.py index 1d7223e605..7b9c5731ba 100644 --- a/src/awx_plugins/credentials/plugins.py +++ b/src/awx_plugins/credentials/plugins.py @@ -689,14 +689,14 @@ 'secret': False, }, { - 'id': 'ah_path_prefix', + 'id': 'request_timeout', 'label': gettext_noop('Verify SSL'), 'type': 'string', 'secret': False, 'default': 'galaxy', 'help_text': gettext_noop( - 'API path used to access the Hub api. Either galaxy, ' - 'or custom. By default it should be galaxy', + 'Specify the timeout Ansible should use in requests to' + 'the host. Defaults to 10s', ), }, ], @@ -710,7 +710,6 @@ 'aap_token': '{{oauth_token}}', 'aap_request_timeout': '{{request_timeout}}', 'aap_validate_certs': '{{verify_ssl}}', - 'ah_path_prefix': '{{ah_path_prefix}}', }, 'env': { 'TOWER_HOST': '{{host}}', @@ -730,7 +729,6 @@ 'AAP_VALIDATE_CERTS': '{{verify_ssl}}', 'AAP_TOKEN': '{{oauth_token}}', 'AAP_REQUEST_TIMEOUT': '{{request_timeout}}', - 'GALAXY_API_PATH_PREFIX': '{{ah_path_prefix}}', }, }, )