Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hint to UI that scm_credential private_key field should have multiple-line #15109

Merged
merged 1 commit into from
May 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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