changed 'username' to 'email address' and ssh key to RSA private key for GCE front end.

This commit is contained in:
Jared Tabor
2014-07-22 10:41:40 -04:00
committed by Luke Sneeringer
parent c6f7c1d2da
commit b19077e0a0
2 changed files with 6 additions and 2 deletions

View File

@@ -101,8 +101,8 @@ angular.module('CredentialFormDefinition', [])
'<dd>Access keys for Amazon Web Services used for inventory management or deployment.</dd>\n' +
'<dt>Rackspace</dt>\n' +
'<dd>Access information for Rackspace Cloud used for inventory management or deployment.</dd>\n' +
'<dt>Google Compute Engine</dt>\n' +
'<dd>Credentials for Google Compute Engine, used for inventory management or deployment.</dd>\n' +
'<dt>Google Compute Engine</dt>\n' +
'<dd>Credentials for Google Compute Engine, used for inventory management or deployment.</dd>\n' +
'<dt>VMWare</dt>\n' +
'<dd>Access information for VMWare vSphere used for inventory management or deployment.</dd>\n' +
'</dl>\n'

View File

@@ -40,6 +40,10 @@ angular.module('CredentialsHelper', ['Utilities'])
case 'scm':
scope.sshKeyDataLabel = 'SCM Private Key';
break;
case 'gce':
scope.usernameLabel = 'Email Address';
scope.sshKeyDataLabel = 'RSA Private Key';
break;
}
}