28d95bfc66
With the split of the User Guides, there's no need anymore to have orphan and user_only flags, remove them from the user-guide directory. Only files that keep :orphan: are doc/user-guide/source/hot-guide/hot_advanced_topics.rst and hot_existing_templates.rst since these files are not currently included. Change-Id: I1ac0356d69d8668785f8b1947e8b061731aca747
1.4 KiB
1.4 KiB
Authenticate against a Networking endpoint
To authenticate against a Networking endpoint, instantiate a
neutronclient.v_2_0.client.Client
object:
from os import environ as env
from neutronclient.v2_0 import client as neutronclient
= neutronclient.Client(auth_url=env['OS_AUTH_URL'],
neutron =env['OS_USERNAME'],
username=env['OS_PASSWORD'],
password=env['OS_TENANT_NAME'],
tenant_name=env['OS_REGION_NAME']) region_name
You can also authenticate by explicitly specifying the endpoint and token:
from os import environ as env
import keystoneclient.v2_0.client as ksclient
from neutronclient.v2_0 import client as neutronclient
= ksclient.Client(auth_url=env['OS_AUTH_URL'],
keystone =env['OS_USERNAME'],
username=env['OS_PASSWORD'],
password=env['OS_TENANT_NAME'],
tenant_name=env['OS_REGION_NAME'])
region_name= keystone.service_catalog.url_for(service_type='network')
endpoint_url = keystone.auth_token
token = neutronclient.Client(endpoint_url=endpoint_url, token=token) neutron