Skip to content

Commit

Permalink
Update S3 env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jcortejoso committed Oct 2, 2024
1 parent e44e1a7 commit 496114b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions store/precomputed_key/s3/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ func CLIFlags(envPrefix, category string) []cli.Flag {
&cli.StringFlag{
Name: EndpointFlagName,
Usage: "endpoint for S3 storage",
EnvVars: withEnvPrefix(envPrefix, "S3_ENDPOINT"),
EnvVars: withEnvPrefix(envPrefix, "ENDPOINT"),
Category: category,
},
&cli.BoolFlag{
Name: EnableTLSFlagName,
Usage: "enable TLS connection to S3 endpoint",
Value: false,
EnvVars: withEnvPrefix(envPrefix, "S3_ENABLE_TLS"),
EnvVars: withEnvPrefix(envPrefix, "ENABLE_TLS"),
Category: category,
},
&cli.StringFlag{
Expand Down

0 comments on commit 496114b

Please sign in to comment.