class EnvConfiguration::Configuration

Attributes

aws_ssm_parameter_store[RW]
dot_env[RW]
yaml[RW]

Public Instance Methods

aws_access_key_id() click to toggle source

—— :aws_ssm_paramer_store ——— :access_key_id, :secret_access_key, :region, :path

# File lib/env_configuration/configuration.rb, line 25
def aws_access_key_id
  aws_ssm_parameter_store && aws_ssm_parameter_store[:access_key_id]
end
aws_path() click to toggle source
# File lib/env_configuration/configuration.rb, line 37
def aws_path
  aws_ssm_parameter_store && aws_ssm_parameter_store[:path]
end
aws_region() click to toggle source
# File lib/env_configuration/configuration.rb, line 33
def aws_region
  aws_ssm_parameter_store && aws_ssm_parameter_store[:region]
end
aws_secret_access_key() click to toggle source
# File lib/env_configuration/configuration.rb, line 29
def aws_secret_access_key
  aws_ssm_parameter_store && aws_ssm_parameter_store[:secret_access_key]
end
dot_env_file() click to toggle source

—— :dot_env ——— :dot_env_file

# File lib/env_configuration/configuration.rb, line 9
def dot_env_file
  dot_env && dot_env[:dot_env_file]
end
yaml_file() click to toggle source

—— :yaml ——— :yaml_file, :section

# File lib/env_configuration/configuration.rb, line 15
def yaml_file
  yaml && yaml[:yaml_file]
end
yaml_section() click to toggle source
# File lib/env_configuration/configuration.rb, line 19
def yaml_section
  yaml && yaml[:section]
end