Skip to content

Commit b075fe1

Browse files
committed
Initial openstack support
1 parent eb39cb0 commit b075fe1

3 files changed

Lines changed: 1208 additions & 1 deletion

File tree

module/sources/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@
99

1010
# define all available sources here
1111
from .vmware.connection import VMWareHandler
12+
from .openstack.connection import OpenStackHandler
1213
from .check_redfish.import_inventory import CheckRedfish
1314

1415
from module.common.configuration import get_config
1516
from module.common.logging import get_logger
1617
from module.netbox.inventory import NetBoxInventory
1718

1819
# list of valid sources
19-
valid_sources = [VMWareHandler, CheckRedfish]
20+
valid_sources = [VMWareHandler, OpenStackHandler, CheckRedfish]
2021

2122

2223
def validate_source(source_class_object=None, state="pre"):

0 commit comments

Comments
 (0)