mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-28 19:01:48 -05:00
[in progress] Azure support.
This commit is contained in:
@@ -97,14 +97,10 @@ angular.module('CredentialFormDefinition', [])
|
||||
'<dd>Used to check out and synchronize playbook repositories with a remote source control ' +
|
||||
'management system such as Git, Subversion (svn), or Mercurial (hg). These credentials are ' +
|
||||
'used on the Projects tab.</dd>\n' +
|
||||
'<dt>Amazon Web Services</dt>\n' +
|
||||
'<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>VMWare</dt>\n' +
|
||||
'<dd>Access information for VMWare vSphere used for inventory management or deployment.</dd>\n' +
|
||||
'<dt>Others (Cloud Providers)</dt>\n' +
|
||||
'<dd>Access keys for authenticating to the specific ' +
|
||||
'cloud provider, usually used for inventory sync ' +
|
||||
'and deployment.</dd>\n' +
|
||||
'</dl>\n'
|
||||
}]
|
||||
},
|
||||
@@ -141,7 +137,8 @@ angular.module('CredentialFormDefinition', [])
|
||||
"username": {
|
||||
labelBind: 'usernameLabel',
|
||||
type: 'text',
|
||||
ngShow: "kind.value && kind.value !== 'aws' && kind.value!=='gce'",
|
||||
ngShow: "kind.value && kind.value !== 'aws' && " +
|
||||
"kind.value !== 'gce'",
|
||||
awRequiredWhen: {
|
||||
variable: 'aws_required',
|
||||
init: false
|
||||
@@ -218,7 +215,8 @@ angular.module('CredentialFormDefinition', [])
|
||||
"ssh_key_data": {
|
||||
labelBind: 'sshKeyDataLabel',
|
||||
type: 'textarea',
|
||||
ngShow: "kind.value == 'ssh' || kind.value == 'scm' || kind.value == 'gce'",
|
||||
ngShow: "kind.value == 'ssh' || kind.value == 'scm' || " +
|
||||
"kind.value == 'gce' || kind.value == 'azure'",
|
||||
awRequiredWhen: {
|
||||
variable: 'key_required',
|
||||
init: true
|
||||
@@ -237,7 +235,7 @@ angular.module('CredentialFormDefinition', [])
|
||||
ngChange: "clearPWConfirm('ssh_key_unlock_confirm')",
|
||||
associated: 'ssh_key_unlock_confirm',
|
||||
ask: true,
|
||||
askShow: "kind.value == 'ssh'", //Only allow ask for machine credentials
|
||||
askShow: "kind.value == 'ssh'", // Only allow ask for machine credentials
|
||||
clear: true
|
||||
},
|
||||
"ssh_key_unlock_confirm": {
|
||||
|
||||
Reference in New Issue
Block a user