From d01f2d6cafdffd6cc5a20bef77128fa06ec47f26 Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Tue, 1 Sep 2020 11:02:39 -0400 Subject: [PATCH] Converting policy_instance_list from dict to list --- awx_collection/plugins/modules/tower_instance_group.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx_collection/plugins/modules/tower_instance_group.py b/awx_collection/plugins/modules/tower_instance_group.py index 6424be4b3b..9a7db2f814 100644 --- a/awx_collection/plugins/modules/tower_instance_group.py +++ b/awx_collection/plugins/modules/tower_instance_group.py @@ -54,7 +54,7 @@ options: description: - List of exact-match Instances that will be assigned to this group required: False - type: dict + type: list pod_spec_override: description: - A custom Kubernetes or OpenShift Pod specification. @@ -88,7 +88,7 @@ def main(): credential=dict(), policy_instance_percentage=dict(type='int', default='0'), policy_instance_minimum=dict(type='int', default='0'), - policy_instance_list=dict(type='dict'), + policy_instance_list=dict(type='list'), pod_spec_override=dict(), instances=dict(required=False, type="list", default=None), state=dict(choices=['present', 'absent'], default='present'),