mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-14 11:58:04 +00:00
Revert "Add GATUS_DONT_EXPAND_ENV env var"
This commit is contained in:
parent
3be6d04d29
commit
a4e9d8e9b0
1 changed files with 1 additions and 5 deletions
|
@ -38,8 +38,6 @@ var (
|
|||
|
||||
// ErrInvalidSecurityConfig is an error returned when the security configuration is invalid
|
||||
ErrInvalidSecurityConfig = errors.New("invalid security configuration")
|
||||
|
||||
dontExpandEnv = os.Getenv("GATUS_DONT_EXPAND_ENV") == "true"
|
||||
)
|
||||
|
||||
// Config is the main configuration structure
|
||||
|
@ -154,9 +152,7 @@ func readConfigurationFile(fileName string) (config *Config, err error) {
|
|||
// parseAndValidateConfigBytes parses a Gatus configuration file into a Config struct and validates its parameters
|
||||
func parseAndValidateConfigBytes(yamlBytes []byte) (config *Config, err error) {
|
||||
// Expand environment variables
|
||||
if !dontExpandEnv {
|
||||
yamlBytes = []byte(os.ExpandEnv(string(yamlBytes)))
|
||||
}
|
||||
yamlBytes = []byte(os.ExpandEnv(string(yamlBytes)))
|
||||
// Parse configuration file
|
||||
if err = yaml.Unmarshal(yamlBytes, &config); err != nil {
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue