@@ -203,15 +203,18 @@ func Get() *IngressConfig {
203203 // Ports
204204 options .SetDefault ("WebPort" , 3000 )
205205 options .SetDefault ("MetricsPort" , 8080 )
206- // Storage
206+ // Storage (MinIO/S3-compatible)
207207 options .SetDefault ("StageBucket" , "available" )
208+ options .SetDefault ("MinioEndpoint" , "" )
209+ options .SetDefault ("MinioAccessKey" , "" )
210+ options .SetDefault ("MinioSecretKey" , "" )
208211 options .SetDefault ("StorageRegion" , "" )
209- // Cloudwatch
210- options .SetDefault ("LogGroup" , "platform-dev" )
211- options .SetDefault ("AwsRegion" , "us-east-1" )
212212 options .SetDefault ("UseSSL" , false )
213- options .SetDefault ("AwsAccessKeyId" , os .Getenv ("CW_AWS_ACCESS_KEY_ID" ))
214- options .SetDefault ("AwsSecretAccessKey" , os .Getenv ("CW_AWS_SECRET_ACCESS_KEY" ))
213+ // Cloudwatch (disabled by default for on-prem)
214+ options .SetDefault ("LogGroup" , "" )
215+ options .SetDefault ("AwsRegion" , "" )
216+ options .SetDefault ("AwsAccessKeyId" , "" )
217+ options .SetDefault ("AwsSecretAccessKey" , "" )
215218 }
216219
217220 IngressCfg := & IngressConfig {
0 commit comments