Beginning work on GCE.

This commit is contained in:
Luke Sneeringer
2014-07-18 12:08:52 -05:00
parent e44784651a
commit ca19ddb3d5
3 changed files with 39 additions and 6 deletions

View File

@@ -27,11 +27,12 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique):
'''
KIND_CHOICES = [
('ssh', _('Machine')),
('scm', _('Source Control')),
('aws', _('Amazon Web Services')),
('rax', _('Rackspace')),
('ssh', _('Machine')),
('scm', _('Source Control')),
('aws', _('Amazon Web Services')),
('rax', _('Rackspace')),
('vmware', _('VMWare')),
('gce', _('Google Compute Engine')),
]
PASSWORD_FIELDS = ('password', 'ssh_key_data', 'ssh_key_unlock',