diff options
author | Lila Yasin <lyasin@redhat.com> | 2025-01-15 19:32:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-15 19:32:33 +0100 |
commit | 211339ce73a5e60d93138d4dd7c3acc273ee6766 (patch) | |
tree | 67817c91fa5f5186aa9947b61ccc128a76e4c1ca | |
parent | Update logstash container image and remove ELK stack (#15744) (diff) | |
download | awx-211339ce73a5e60d93138d4dd7c3acc273ee6766.tar.xz awx-211339ce73a5e60d93138d4dd7c3acc273ee6766.zip |
Add client_secret and client_id to credential_input_fields (#15734)
-rw-r--r-- | awxkit/awxkit/api/pages/credentials.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/awxkit/awxkit/api/pages/credentials.py b/awxkit/awxkit/api/pages/credentials.py index 8d5d332d5f..75c724a8d5 100644 --- a/awxkit/awxkit/api/pages/credentials.py +++ b/awxkit/awxkit/api/pages/credentials.py @@ -31,6 +31,8 @@ credential_input_fields = ( 'become_password', 'become_username', 'client', + 'client_id', + 'client_secret', 'cloud_environment', 'domain', 'host', |