Skip to content

Instantly share code, notes, and snippets.

View raj-patel's full-sized avatar

Raj Patel raj-patel

View GitHub Profile
def test_connection():
conn = create_connection('https://identity.api.rackspacecloud.com/v2.0','IAD','596839', 'rajpatel','xxxx')
for secret in conn.key_manager.secrets():
print(secret.secret_id)
print("Key" , conn.key_manager.get_secret(secret.secret_id).payload)
if __name__ == "__main__": test_connection()