From e3b64f5bb53d2013a53d08f6d93df6ec24445e0d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 19 Feb 2015 10:52:09 -0800 Subject: [PATCH] providers/aws: style --- builtin/providers/aws/resource_aws_db_security_group.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_db_security_group.go b/builtin/providers/aws/resource_aws_db_security_group.go index a5fa41f75..f8d45c13b 100644 --- a/builtin/providers/aws/resource_aws_db_security_group.go +++ b/builtin/providers/aws/resource_aws_db_security_group.go @@ -96,8 +96,7 @@ func resourceAwsDbSecurityGroupCreate(d *schema.ResourceData, meta interface{}) ingresses := d.Get("ingress").(*schema.Set) for _, ing := range ingresses.List() { - err = resourceAwsDbSecurityGroupAuthorizeRule(ing, sg.Name, conn) - + err := resourceAwsDbSecurityGroupAuthorizeRule(ing, sg.Name, conn) if err != nil { errs = append(errs, err) }