# Copyright (c) 2023 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # This module is holding all the Env Variables that we could use through the agent lifecycle module EnvVariables ENV_VARIABLES = { telemetry_opt_outs: ENV['CONTRAST_AGENT_TELEMETRY_OPTOUT'].to_s || false }.cs__freeze def return_value key return unless ENV_VARIABLES.key?(key.to_sym) sym_key = key.downcase.to_sym ENV_VARIABLES[sym_key] end end end end