From 38885580b4a946b88a39c5e9b48212c667bb9833 Mon Sep 17 00:00:00 2001 From: chris meyers Date: Wed, 2 May 2018 12:32:08 -0400 Subject: [PATCH] only require the name field when creating instance group --- awx/api/serializers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/serializers.py b/awx/api/serializers.py index 551940f24e..64b709d056 100644 --- a/awx/api/serializers.py +++ b/awx/api/serializers.py @@ -4599,7 +4599,7 @@ class InstanceGroupSerializer(BaseSerializer): "this group when new instances come online.") ) policy_instance_list = serializers.ListField( - child=serializers.CharField(), + child=serializers.CharField(), required=False, help_text=_("List of exact-match Instances that will be assigned to this group") )