From c4e6c14fecbb9bc545fe261de96e344387074cbc Mon Sep 17 00:00:00 2001 From: clint shryock Date: Fri, 22 Jul 2016 10:32:51 -0500 Subject: [PATCH] provider/aws: Restore lost client.simpledbconn initialization It once was lost but now is found! --- builtin/providers/aws/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/providers/aws/config.go b/builtin/providers/aws/config.go index 8ffef30102..88bf4d0e70 100644 --- a/builtin/providers/aws/config.go +++ b/builtin/providers/aws/config.go @@ -243,6 +243,7 @@ func (c *Config) Client() (interface{}, error) { client.r53conn = route53.New(usEast1Sess) client.rdsconn = rds.New(sess) client.redshiftconn = redshift.New(sess) + client.simpledbconn = simpledb.New(sess) client.s3conn = s3.New(sess) client.sesConn = ses.New(sess) client.snsconn = sns.New(sess)