Skip to content

Commit

Permalink
scm_credential private_key field to have multiple line
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswnl committed May 16, 2017
1 parent 45e30d2 commit f7f5b42
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 f7f5b42

Please sign in to comment.