Skip to content

Commit

Permalink
aws/external: Fix minor typo in env var key variables (#583)
Browse files Browse the repository at this point in the history
Updates a minor typo in env var secret keys by changing Secrete to Secret.
  • Loading branch information
hasheddan committed Jun 10, 2020
1 parent 31880af commit cdf53db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aws/external/env_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const (
awsAccessKeyIDEnvVar = "AWS_ACCESS_KEY_ID"
awsAccessKeyEnvVar = "AWS_ACCESS_KEY"

awsSecreteAccessKeyEnvVar = "AWS_SECRET_ACCESS_KEY"
awsSecreteKeyEnvVar = "AWS_SECRET_KEY"
awsSecretAccessKeyEnvVar = "AWS_SECRET_ACCESS_KEY"
awsSecretKeyEnvVar = "AWS_SECRET_KEY"

awsSessionTokenEnvVar = "AWS_SESSION_TOKEN"

Expand Down Expand Up @@ -55,8 +55,8 @@ var (
awsAccessKeyEnvVar,
}
credSecretEnvKeys = []string{
awsSecreteAccessKeyEnvVar,
awsSecreteKeyEnvVar,
awsSecretAccessKeyEnvVar,
awsSecretKeyEnvVar,
}
regionEnvKeys = []string{
awsRegionEnvVar,
Expand Down

0 comments on commit cdf53db

Please sign in to comment.