From b19077e0a066c0b94ed3d737da22adac0a6302a4 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Tue, 22 Jul 2014 10:41:40 -0400 Subject: [PATCH] changed 'username' to 'email address' and ssh key to RSA private key for GCE front end. --- awx/ui/static/js/forms/Credentials.js | 4 ++-- awx/ui/static/js/helpers/Credentials.js | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/awx/ui/static/js/forms/Credentials.js b/awx/ui/static/js/forms/Credentials.js index d01ace5a89..0c9d2c80db 100644 --- a/awx/ui/static/js/forms/Credentials.js +++ b/awx/ui/static/js/forms/Credentials.js @@ -101,8 +101,8 @@ angular.module('CredentialFormDefinition', []) '
Access keys for Amazon Web Services used for inventory management or deployment.
\n' + '
Rackspace
\n' + '
Access information for Rackspace Cloud used for inventory management or deployment.
\n' + - '
Google Compute Engine
\n' + - '
Credentials for Google Compute Engine, used for inventory management or deployment.
\n' + + '
Google Compute Engine
\n' + + '
Credentials for Google Compute Engine, used for inventory management or deployment.
\n' + '
VMWare
\n' + '
Access information for VMWare vSphere used for inventory management or deployment.
\n' + '\n' diff --git a/awx/ui/static/js/helpers/Credentials.js b/awx/ui/static/js/helpers/Credentials.js index f5bf3edeb7..80e051c88c 100644 --- a/awx/ui/static/js/helpers/Credentials.js +++ b/awx/ui/static/js/helpers/Credentials.js @@ -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; } }