initial checkin
diff --git a/plstackapi/planetstack/api/auth.py b/plstackapi/planetstack/api/auth.py
new file mode 100644
index 0000000..e204d72
--- /dev/null
+++ b/plstackapi/planetstack/api/auth.py
@@ -0,0 +1,8 @@
+from plstackapi.openstack.driver import OpenStackDriver
+
+def auth_check(auth):
+    client = OpenStackDriver(username=auth['Username'],
+                             password=auth['AuthString'],
+                             tenant=auth['LoginBase'])
+    client.authenticate()
+    return client