Sha256: b53a28c85295ab4ddc449701bafd2f290b54a38152f93efa8c238e7ca82b64ef

Contents?: true

Size: 1017 Bytes

Versions: 5

Compression:

Stored size: 1017 Bytes

Contents

require 'pathname'

module Canzea

  # Configuration defaults
  @config = {
              :log_level => "verbose",
              :catalog_location => "#{Dir.home}/.ecosystem-catalog",
              :catalog_git => "https://gitlab.com/canzea/ecosystem-catalog.git",
              :catalog_branch => "develop",
              :git_repo => "/opt/cloud-profile",
              :logging_root => Dir.home,
              :pwd => Dir.pwd,
              :consul_tls_ca_file => "/etc/consul.d/ssl/ca.cert",
              :consul_tls_cert_file => "/etc/consul.d/ssl/consul.cert",
              :consul_tls_key_file => "/etc/consul.d/ssl/consul.key",
              :vault_tls_cert_file => "/etc/consul.d/ssl/vault.cert",
              :vault_tls_key_file => "/etc/consul.d/ssl/vault.key"
            }
  @valid_config_keys = @config.keys

  # Configure through hash
  def self.configure(opts = {})
    opts.each {|k,v| @config[k.to_sym] = v if @valid_config_keys.include? k.to_sym}
  end

  def self.config
    @config
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
canzea-0.1.40 lib/canzea/config.rb
canzea-0.1.39 lib/canzea/config.rb
canzea-0.1.38 lib/canzea/config.rb
canzea-0.1.37 lib/canzea/config.rb
canzea-0.1.36 lib/canzea/config.rb