Skip to content

Commit 7e80022

Browse files
committed
add help text
Signed-off-by: Seth Foster <fosterbseth@gmail.com>
1 parent 9c785a4 commit 7e80022

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/awx_plugins/credentials/plugins.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -586,16 +586,16 @@
586586
inputs={
587587
'fields': [
588588
{
589-
'id': 'username', 'label': gettext_noop('Username'), 'type': 'string',
589+
'id': 'username', 'label': gettext_noop('Username'), 'type': 'string', 'help_text': gettext_noop('Required for basic authentication'),
590590
},
591591
{
592-
'id': 'password', 'label': gettext_noop('Password'), 'type': 'string', 'secret': True,
592+
'id': 'password', 'label': gettext_noop('Password'), 'type': 'string', 'secret': True, 'help_text': gettext_noop('Required for basic authentication'),
593593
},
594594
{
595-
'id': 'client_id', 'label': gettext_noop('Client ID'), 'type': 'string',
595+
'id': 'client_id', 'label': gettext_noop('Client ID'), 'type': 'string', 'help_text': gettext_noop('Alternative to username and password. Required for service account authentication'),
596596
},
597597
{
598-
'id': 'client_secret', 'label': gettext_noop('Client Secret'), 'type': 'string', 'secret': True,
598+
'id': 'client_secret', 'label': gettext_noop('Client Secret'), 'type': 'string', 'secret': True, 'help_text': gettext_noop('Alternative to username and password. Required for service account authentication'),
599599
}
600600
],
601601
'required': [],

0 commit comments

Comments
 (0)