Skip to content

Commit

Permalink
[minor_change] Add 8.0 option for dvs_version attribute in aci_vmm_co…
Browse files Browse the repository at this point in the history
…ntroller
  • Loading branch information
lhercot committed Oct 27, 2023
1 parent 46899b0 commit 3a2d5a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/aci_vmm_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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"]),
Expand Down

0 comments on commit 3a2d5a3

Please sign in to comment.