Sha256: 821b16658140c1863123852ce68f48521f8597df7b8ca8c2e8426d1303bdef54
Contents?: true
Size: 593 Bytes
Versions: 24
Compression:
Stored size: 593 Bytes
Contents
# Copyright (c) 2022 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
Version data entries
24 entries across 24 versions & 1 rubygems