1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Change human credential types.

This commit updates the human credential types from SCM/AWS to "Source
Control" and "Amazon Web Services".
This commit is contained in:
Luke Sneeringer 2014-07-16 08:23:47 -05:00
parent b743ec2783
commit 61dea4de4d

View File

@ -28,8 +28,8 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique):
KIND_CHOICES = [
('ssh', _('Machine')),
('scm', _('SCM')),
('aws', _('AWS')),
('scm', _('Source Control')),
('aws', _('Amazon Web Services')),
('rax', _('Rackspace')),
]