Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 835 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 835 Bytes

libcloud-interoute

Apache Libcloud driver for Interoute (based on Apache CloudStack, but slightly modified)

Requirements

Apache Libcloud 0.18.0 or later

Install

python setup.py install

Usage

from libcloud.compute.providers import get_driver
from libcloud.compute.providers import set_driver


set_driver('interoute', 'interoute.libcloud.compute', 'InterouteNodeDriver')

# Your code which uses the driver.
# For example:
Driver = get_driver('interoute')

# This driver is able to use different Interoute VDC regions
conn = Driver(key=<apikey>,
              secret=<secretkey>,
              host=<host>,
              path=<path>,
              region=<vdcregion>)

or RTFM