Skip to content

Commit

Permalink
feat: set AWS_DEFAULT_REGION (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
joepurdy authored Nov 14, 2022
1 parent 36bbd0d commit ef9cae4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cli/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ func ExecCommand(input ExecCommandInput) error {
env := environ(os.Environ())
env.Set("AWS_DEFAULT_PROFILE", input.ProfileName)
env.Set("AWS_PROFILE", input.ProfileName)
env.Set("AWS_DEFAULT_REGION", input.Region)
env.Set("AWS_REGION", input.Region)
env.Set("AWS_AXOLOTL", "42")

Expand Down

0 comments on commit ef9cae4

Please sign in to comment.