From f3920ea0ddcfff49f1c291e0a036ce6bee4ffaf9 Mon Sep 17 00:00:00 2001 From: Denis Date: Sun, 3 Apr 2016 01:33:44 -0400 Subject: [PATCH] Update Environment Variable AWS_DEFAULT_REGION Fixed the correct environment variable for AWS region. http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-environment --- awscli/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awscli/Dockerfile b/awscli/Dockerfile index 9559438..eb8b818 100644 --- a/awscli/Dockerfile +++ b/awscli/Dockerfile @@ -13,7 +13,7 @@ RUN apk update && apk add \ && { \ echo '[default]'; \ echo 'output = json'; \ - echo 'region = $AMAZON_REGION'; \ + echo 'region = $AWS_DEFAULT_REGION'; \ echo 'aws_access_key_id = $AMAZON_ACCESS_KEY_ID'; \ echo 'aws_secret_access_key = $AMAZON_SECRET_ACCESS_KEY'; \ } > /root/.aws/config