diff --git a/lib/ansible/module_utils/cloudstack.py b/lib/ansible/module_utils/cloudstack.py index d9b29fefe7..c27116c384 100644 --- a/lib/ansible/module_utils/cloudstack.py +++ b/lib/ansible/module_utils/cloudstack.py @@ -35,6 +35,18 @@ try: except ImportError: has_lib_cs = False +CS_HYPERVISORS = [ + "KVM", "kvm", + "VMware", "vmware", + "BareMetal", "baremetal", + "XenServer", "xenserver", + "LXC", "lxc", + "HyperV", "hyperv", + "UCS", "ucs", + "OVM", "ovm", + "Simulator", "simulator", + ] + def cs_argument_spec(): return dict( api_key = dict(default=None),