Skip to content

Commit

Permalink
Merge pull request #69 from jameswnl/rhv
Browse files Browse the repository at this point in the history
Add host field to rhv_credential
(cherry picked from commit d781a89)

https://bugzilla.redhat.com/show_bug.cgi?id=1559479
  • Loading branch information
agrare authored and simaishi committed Mar 22, 2018
1 parent ee546a0 commit d98973f
Showing 1 changed file with 9 additions and 1 deletion.
Expand Up @@ -11,7 +11,15 @@ module ManageIQ::Providers::AnsibleTower::Shared::AutomationManager::RhvCredenti
}
}.freeze

EXTRA_ATTRIBUTES = {}.freeze
EXTRA_ATTRIBUTES = {
:host => {
:type => :string,
:label => N_('Host'),
:help_text => N_('The host to authenticate with'),
:max_length => 1024,
:required => true
}
}.freeze

API_ATTRIBUTES = COMMON_ATTRIBUTES.merge(EXTRA_ATTRIBUTES).freeze

Expand Down

0 comments on commit d98973f

Please sign in to comment.