From 3a2d5a3fa07de5c49d0915133cc4d67fb0d63fd6 Mon Sep 17 00:00:00 2001 From: Lionel Hercot Date: Thu, 26 Oct 2023 13:26:54 -0700 Subject: [PATCH] [minor_change] Add 8.0 option for dvs_version attribute in aci_vmm_controller --- plugins/modules/aci_vmm_controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/aci_vmm_controller.py b/plugins/modules/aci_vmm_controller.py index b066d8b91..f8a51529c 100644 --- a/plugins/modules/aci_vmm_controller.py +++ b/plugins/modules/aci_vmm_controller.py @@ -33,7 +33,7 @@ - Version of the VMware DVS. type: str aliases: [] - choices: [ 'unmanaged', '5.1', '5.5', '6.0', '6.5', '6.6', '7.0' ] + choices: [ 'unmanaged', '5.1', '5.5', '6.0', '6.5', '6.6', '7.0', '8.0' ] stats_collection: description: - Whether stats collection is enabled. @@ -274,7 +274,7 @@ def main(): argument_spec.update( name=dict(type="str"), controller_hostname=dict(type="str"), - dvs_version=dict(type="str", choices=["unmanaged", "5.1", "5.5", "6.0", "6.5", "6.6", "7.0"]), + dvs_version=dict(type="str", choices=["unmanaged", "5.1", "5.5", "6.0", "6.5", "6.6", "7.0", "8.0"]), stats_collection=dict(type="str", default="disabled", choices=["enabled", "disabled"]), domain=dict(type="str", aliases=["domain_name", "domain_profile"]), state=dict(type="str", default="present", choices=["absent", "present", "query"]),