9 lines
288 B
Python
9 lines
288 B
Python
import openstack
|
|
from openstack.connection import Connection
|
|
|
|
from watcher_visio.settings import OPENSTACK_CLOUD, OPENSTACK_REGION_NAME
|
|
|
|
def get_connection() -> Connection:
|
|
connection = openstack.connect(cloud=OPENSTACK_CLOUD, region_name=OPENSTACK_REGION_NAME)
|
|
return connection
|