Skip to content

Commit

Permalink
Merge pull request #15109 from jameswnl/private_key
Browse files Browse the repository at this point in the history
Hint to UI that scm_credential private_key field should have multiple-line
  • Loading branch information
blomquisg authored May 16, 2017
2 parents f4d9e5c + f7f5b42 commit 4e7fe00
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::ScmCredenti

COMMON_ATTRIBUTES = {
:userid => {
:label => N_('Access Key'),
:help_text => N_('AWS Access Key for this credential')
:label => N_('Username'),
:help_text => N_('Username for this credential')
},
:password => {
:type => :password,
:label => N_('Secret Key'),
:help_text => N_('AWS Secret Key for this credential')
:label => N_('Password'),
:help_text => N_('Password for this credential')
}
}.freeze

Expand All @@ -22,6 +22,7 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::ScmCredenti
},
:ssh_key_data => {
:type => :password,
:multiline => true,
:label => N_('Private key'),
:help_text => N_('RSA or DSA private key to be used instead of password')
}
Expand Down

0 comments on commit 4e7fe00

Please sign in to comment.