We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d451c28 commit c1419c5Copy full SHA for c1419c5
internal/app/config.go
@@ -42,6 +42,10 @@ func NewConfig() (*Config, error) {
42
cfg.AwsConsoleURL = "https://console.aws.amazon.com"
43
}
44
45
+ if cfg.AutoCloseRulesS3Prefix == "" {
46
+ cfg.AutoCloseRulesS3Prefix = "rules/"
47
+ }
48
+
49
rulesJSON := os.Getenv("APP_AUTO_CLOSE_RULES")
50
if rulesJSON != "" {
51
rules, err := parseAutoCloseRules(rulesJSON)
0 commit comments