blob: 8796f1489a50f5bea79959fc658377dec95589f4 [file] [log] [blame]
Siobhan Tully30fd4292013-05-10 08:59:56 -04001from openstack.client import OpenStackClient
Tony Mack5f7abe02013-04-08 15:14:30 -04002
Tony Mack79748612013-05-01 14:52:03 -04003def auth_check(username, password, tenant):
4 client = OpenStackClient(username=username,
5 password=password,
6 tenant=tenant)
Tony Mack5f7abe02013-04-08 15:14:30 -04007 client.authenticate()
8 return client