From 583e259c549cbd96a694916819b5e0a16f822dc0 Mon Sep 17 00:00:00 2001 From: jasonjuenger Date: Mon, 4 Mar 2024 13:41:28 -0800 Subject: [PATCH] change allowed_slots type to list of ints to match F5 expected type --- .../f5networks/f5_modules/plugins/modules/bigip_vcmp_guest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_vcmp_guest.py b/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_vcmp_guest.py index be3570840..1fc833bf0 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_vcmp_guest.py +++ b/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_vcmp_guest.py @@ -158,7 +158,7 @@ - By default, this list includes every available slot in the cluster. This means the guest may be assigned to any slot by default. type: list - elements: str + elements: int notes: - This module can take a lot of time to deploy vCMP guests. This is an intrinsic limitation of the vCMP system, because it is booting real VMs on the BIG-IP @@ -989,7 +989,7 @@ def __init__(self): min_number_of_slots=dict(type='int'), allowed_slots=dict( type='list', - elements='str', + elements='int', ), partition=dict( default='Common',