From 50782b94654ff0fe80566c9805680661bf4c0ba2 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Fri, 18 Aug 2017 15:46:28 -0400 Subject: [PATCH] add required fields for RHSatellite6 credentials see: https://github.com/ansible/ansible-tower/issues/7467 --- awx/main/models/credential.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/main/models/credential.py b/awx/main/models/credential.py index 4906d7d14e..037c71b39c 100644 --- a/awx/main/models/credential.py +++ b/awx/main/models/credential.py @@ -861,7 +861,8 @@ def satellite6(cls): 'label': 'Password', 'type': 'string', 'secret': True, - }] + }], + 'required': ['host', 'username', 'password'], } )