Class: Conjur::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/conjur/configuration.rb

Overview

Stores a configuration for the Conjur API client. This class provides global and thread local storage for common options used by the Conjur API. Most importantly, it specifies the

Environment Variables

Option values used by Conjur can be given by environment variables, using a standard naming scheme. Specifically, an environment variable named CONJUR_ACCOUNT will be used to provide a default value for the #account option.

Required Options

The #account and #appliance_url are always required. Except in special cases, the #cert_file is also required, but you may omit it if your Conjur root certificate is in the OpenSSl default certificate store.

Thread Local Configuration

While using a globally available configuration is convenient for most applications, sometimes you will need to use different configurations in different threads. This is supported by returning a thread local version from configuration if one has been set by with_configuration.

Examples:

Basic Configuration

Conjur.configure do |c|
  c. = 'the-account'
  c.cert_file = find_conjur_cert_file
end

Setting the appliance_url from an environment variable

ENV['CONJUR_APPLIANCE_URL'] = 'https://some-host.com/api'
Conjur::Configuration.new.appliance_url # => 'https://some-host.com/api'

Using thread local configuration in a web application request handler

# Assume that we're in a request handler thread in a multithreaded web server.

requested_appliance_url = request.header 'X-Conjur-Appliance-Url'

with_configuration Conjur.config.clone(appliance_url: requested_appliance_url) do
  # `api` is an instance attribute.  Note that we can use an api that was created
  # before we modified the thread local configuration.

  # 404 if the user doesn't exist

  user = api.user request.header('X-Conjur-Login')
  raise HttpError, 404, "User #{user.} does not exist" unless user.exists?
  # ... finish the request
end

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Configuration

Note:

options must use symbols for keys.

Create a new Conjur::Configuration, setting initial values from options.

Examples:

Conjur.config = Conjur::Configuration.new account: 'companyname'
Conjur.config. # => 'companyname'

Parameters:

  • options (Hash) (defaults to: {})

    hash of options to set on the new instance.



189
190
191
192
193
# File 'lib/conjur/configuration.rb', line 189

def initialize options = {}
  @explicit = options.dup
  @supplied = options.dup
  @computed = Hash.new
end

Instance Attribute Details

#accountString

Note:

this option is required, and attempting to make any api calls prior to setting it (either explicitly or with the "CONJUR_ACCOUNT" environment variable) will raise an exception.

The organizational account used by Conjur.

On Conjur appliances, this option will be set once when the appliance is first configured. You can get the value for the acccount option from your conjur administrator, or if you have installed the Conjur command line tools by running conjur authn whoami, or examining your .conjurrc file.

Returns:

  • (String)


347
# File 'lib/conjur/configuration.rb', line 347

add_option :account, required: true

#appliance_urlString

Note:

If you are using an appliance (if you're not sure, you probably are), this option is required.

The url for your Conjur appliance.

If your appliance's hostname is 'conjur.companyname.com', then your appliance_url will be 'https://conjur.companyname.com/api'.

Returns:

  • (String)

    the appliance URL



324
# File 'lib/conjur/configuration.rb', line 324

add_option :appliance_url

#authn_local_socketObject

File path to the Unix socket used for local authentication. This is only available when the API client is running on the Conjur server.



384
# File 'lib/conjur/configuration.rb', line 384

add_option :authn_local_socket, default: "/run/authn-local/.socket"

#authn_urlString

The url for the Conjur authentication service.

By default, this will be built from the +appliance_url+. To use a custom authenticator, set this option in code or set CONJUR_AUTHN_URL.

Returns:

  • (String)

    the authentication service url



298
299
300
# File 'lib/conjur/configuration.rb', line 298

add_option :authn_url do
  global_service_url 0, service_name: 'authn'
end

#cert_fileString?

Path to the certificate file to use when making secure connections to your Conjur appliance.

This should be the path to the root Conjur SSL certificate in PEM format. You will normally get the certificate file using the conjur init command. This option is not required if the certificate or its root is in the OpenSSL default cert store. If your program throws an error indicating that SSL verification has failed, you probably need to set or fix this option.

Returns:

  • (String, nil)

    path to the certificate file, or nil if you aren't using one.



360
# File 'lib/conjur/configuration.rb', line 360

add_option :cert_file

#core_urlString

Note:

You should not generally set this value. Instead, Conjur will derive it from the #account and #appliance_url properties.

The url for the core Conjur services.

Returns:

  • (String)

    the base service url



311
312
313
# File 'lib/conjur/configuration.rb', line 311

add_option :core_url do
  global_service_url 0
end

#ssl_certificateObject

Contents of a certificate file. This can be used instead of :cert_file in environments like Heroku where you can't use a certificate file.

This option overrides the value of #cert_file if both are given, and issues a warning.

See Also:



370
# File 'lib/conjur/configuration.rb', line 370

add_option :ssl_certificate

#versionObject

Selects the major API version of the Conjur server. With this setting, the API will use the routing scheme for API version 4 or 5.

Methods which are not available in the selected version will raise NoMethodError.



378
# File 'lib/conjur/configuration.rb', line 378

add_option :version, default: 5

Instance Method Details

#apply_cert_config!(store = OpenSSL::SSL::SSLContext::DEFAULT_CERT_STORE) ⇒ Boolean

Add the certificate configured by the #ssl_certificate and #cert_file options to the certificate store used by Conjur clients.

Parameters:

  • store (OpenSSL::X509::Store) (defaults to: OpenSSL::SSL::SSLContext::DEFAULT_CERT_STORE)

    the certificate store that the certificate will be installed in.

Returns:

  • (Boolean)

    whether a certificate was added to the store.



403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
# File 'lib/conjur/configuration.rb', line 403

def apply_cert_config! store=OpenSSL::SSL::SSLContext::DEFAULT_CERT_STORE
  if ssl_certificate
    CertUtils.parse_certs(ssl_certificate).each do |cert|
      begin
        store.add_cert cert
      rescue OpenSSL::X509::StoreError => ex
        raise unless ex.message == 'cert already in hash table'
      end
    end
  elsif cert_file
    ensure_cert_readable!(cert_file)
    store.add_file cert_file
  else
    return false
  end
  true
end

#clone(override_options = {}) ⇒ Conjur::Configuration

Return a copy of this Conjur::Configuration instance, optionally updating the copy with options from the override_options hash.

Examples:

original = Conjur.configuration
original.  # => 'conjur'
copy = original.clone account: 'some-other-account'
copy.    # => 'some-other-account'
original. # => 'conjur'

Parameters:

  • override_options (Hash) (defaults to: {})

    options to set on the new instance

Returns:



272
273
274
# File 'lib/conjur/configuration.rb', line 272

def clone override_options = {}
  self.class.new self.explicit.dup.merge(override_options)
end

#version_logic(v4_logic, v5_logic) ⇒ Object

Calls a major-version-specific function.



387
388
389
390
391
392
393
394
395
396
# File 'lib/conjur/configuration.rb', line 387

def version_logic v4_logic, v5_logic
  case version.to_s
  when "4"
    v4_logic.call
  when "5"
    v5_logic.call
  else
    raise "Unsupported major version #{version}"
  end
end