Skip to content

Commit a58a0eb

Browse files
authored
Create simple_conn_using_auth_url.py
1 parent 4c6cb9c commit a58a0eb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

simple_conn_using_auth_url.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from openstack import connection
2+
3+
conn = connection.Connection(
4+
auth_url = 'http://YOUR_floating_IP:5000/v2.0',
5+
username = 'YOUR_USERNAME',
6+
password = 'YOUR_PASSWORD',
7+
project_name = 'YOUR_PROJECT_NAAME')

0 commit comments

Comments
 (0)