Merge pull request #6402 from ryanpetrello/fix-6372

fix incorrect AWS Credential Type labels
This commit is contained in:
Ryan Petrello
2017-05-31 17:36:33 -04:00
committed by GitHub

View File

@@ -720,11 +720,11 @@ def aws(cls):
inputs={ inputs={
'fields': [{ 'fields': [{
'id': 'username', 'id': 'username',
'label': 'Username', 'label': 'Access Key',
'type': 'string' 'type': 'string'
}, { }, {
'id': 'password', 'id': 'password',
'label': 'Password', 'label': 'Secret Key',
'type': 'string', 'type': 'string',
'secret': True, 'secret': True,
}, { }, {