Method: Fog::OpenStack::Core#credentials

Defined in:
lib/fog/openstack/core.rb

#credentialsObject



25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/fog/openstack/core.rb', line 25

def credentials
  options = {
    :provider             => 'openstack',
    :openstack_auth_url   => @openstack_auth_uri.to_s,
    :openstack_auth_token => @auth_token,
    :current_user         => @current_user,
    :current_user_id      => @current_user_id,
    :current_tenant       => @current_tenant,
    :unscoped_token       => @unscoped_token
  }
  openstack_options.merge options
end