mirror of
https://github.com/ansible/awx.git
synced 2026-03-07 03:31:10 -03:30
Add "cryptography" kind to CredentialType (#12842)
This was missed when we landed #12813. Adds cryptography kind to the CredentialType allowed kinds list, which now produces the proper error message when attempting to PUT to modify the managed credential type. Signed-off-by: Rick Elrod <rick@elrod.me>
This commit is contained in:
@@ -336,6 +336,7 @@ class CredentialType(CommonModelNameNotUnique):
|
||||
('external', _('External')),
|
||||
('kubernetes', _('Kubernetes')),
|
||||
('galaxy', _('Galaxy/Automation Hub')),
|
||||
('cryptography', _('Cryptography')),
|
||||
)
|
||||
|
||||
kind = models.CharField(max_length=32, choices=KIND_CHOICES)
|
||||
|
||||
Reference in New Issue
Block a user