From 08949866c5bbffa92a2a8192d913465921dd4bc8 Mon Sep 17 00:00:00 2001 From: Clint Shryock Date: Fri, 20 Feb 2015 09:08:41 -0600 Subject: [PATCH] Merge config --- builtin/providers/aws/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/config.go b/builtin/providers/aws/config.go index a27bb841a..5482cdbcd 100644 --- a/builtin/providers/aws/config.go +++ b/builtin/providers/aws/config.go @@ -69,10 +69,10 @@ func (c *Config) Client() (interface{}, error) { log.Println("[INFO] Initializing RDS connection") client.rdsconn = rds.New(auth, region) - log.Println("[INFO] Initializing Route53 connection") // aws-sdk-go uses v4 for signing requests, which requires all global // endpoints to use 'us-east-1'. // See http://docs.aws.amazon.com/general/latest/gr/sigv4_changes.html + log.Println("[INFO] Initializing Route53 connection") client.r53conn = route53.New(creds, "us-east-1", nil) log.Println("[INFO] Initializing AutoScaling connection") client.autoscalingconn = autoscaling.New(creds, c.Region, nil)