From a6d4acaa15b7cbe4178817b4f996fb5144920b73 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Fri, 27 Jun 2014 12:55:24 -0400 Subject: [PATCH] providers/aws: use mitchellh/goamz --- builtin/providers/aws/resource_aws_elb.go | 2 +- builtin/providers/aws/resource_provider.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_elb.go b/builtin/providers/aws/resource_aws_elb.go index b5226c6ed..271af776e 100644 --- a/builtin/providers/aws/resource_aws_elb.go +++ b/builtin/providers/aws/resource_aws_elb.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform/helper/diff" "github.com/hashicorp/terraform/terraform" - "github.com/pearkes/goamz/elb" + "github.com/mitchellh/goamz/elb" ) func resource_aws_elb_create( diff --git a/builtin/providers/aws/resource_provider.go b/builtin/providers/aws/resource_provider.go index 850b4d705..b9b011f79 100644 --- a/builtin/providers/aws/resource_provider.go +++ b/builtin/providers/aws/resource_provider.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform/helper/multierror" "github.com/hashicorp/terraform/terraform" "github.com/mitchellh/goamz/ec2" - "github.com/pearkes/goamz/elb" + "github.com/mitchellh/goamz/elb" ) type ResourceProvider struct {