From 05dded397d67541b66a77d38600581e0e0887831 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Mon, 22 Feb 2021 14:00:33 -0500 Subject: [PATCH] make sure we use built in credential type this way we can pass kind="registry" to akit creat method and we get the correct built in type --- awxkit/awxkit/api/pages/credentials.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awxkit/awxkit/api/pages/credentials.py b/awxkit/awxkit/api/pages/credentials.py index f964ae38e4..e5b80cf7d0 100644 --- a/awxkit/awxkit/api/pages/credentials.py +++ b/awxkit/awxkit/api/pages/credentials.py @@ -82,6 +82,7 @@ def config_cred_from_kind(kind): credential_type_name_to_config_kind_map = { 'amazon web services': 'aws', + 'container registry': 'registry', 'ansible galaxy/automation hub api token': 'galaxy', 'ansible tower': 'tower', 'google compute engine': 'gce',