Using hashicorp/aws-sdk-go

This commit is contained in:
Rahul Menon 2015-03-03 10:49:21 +05:30
parent d77df312a3
commit c5efe1e5ce
3 changed files with 9 additions and 9 deletions

View File

@ -12,11 +12,11 @@ import (
"github.com/mitchellh/goamz/elb" "github.com/mitchellh/goamz/elb"
"github.com/mitchellh/goamz/rds" "github.com/mitchellh/goamz/rds"
awsGo "github.com/awslabs/aws-sdk-go/aws" awsGo "github.com/hashicorp/aws-sdk-go/aws"
"github.com/awslabs/aws-sdk-go/gen/autoscaling" "github.com/hashicorp/aws-sdk-go/gen/autoscaling"
awsEc2 "github.com/awslabs/aws-sdk-go/gen/ec2" awsEc2 "github.com/hashicorp/aws-sdk-go/gen/ec2"
"github.com/awslabs/aws-sdk-go/gen/route53" "github.com/hashicorp/aws-sdk-go/gen/route53"
"github.com/awslabs/aws-sdk-go/gen/s3" "github.com/hashicorp/aws-sdk-go/gen/s3"
) )
type Config struct { type Config struct {

View File

@ -5,8 +5,8 @@ import (
"log" "log"
"time" "time"
"github.com/awslabs/aws-sdk-go/aws" "github.com/hashicorp/aws-sdk-go/aws"
"github.com/awslabs/aws-sdk-go/gen/ec2" "github.com/hashicorp/aws-sdk-go/gen/ec2"
"github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/helper/schema"
) )

View File

@ -2,8 +2,8 @@ package aws
import ( import (
"fmt" "fmt"
"github.com/awslabs/aws-sdk-go/aws" "github.com/hashicorp/aws-sdk-go/aws"
"github.com/awslabs/aws-sdk-go/gen/ec2" "github.com/hashicorp/aws-sdk-go/gen/ec2"
"github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform" "github.com/hashicorp/terraform/terraform"
"testing" "testing"