创建ec2安全组时不支持的协议方案

时间:2014-10-22 10:41:28

标签: go goamz

我正在尝试使用goamz创建安全组。 以下是我的代码。

package main
import (
    "fmt"
    "os"
    "github.com/mitchellh/goamz/aws"
    "github.com/mitchellh/goamz/ec2"
)
type SecurityGroup struct {
    Id string `xml:"groupId"`   
    Name string `xml:"groupName"` 
    Description string `xml:"groupDescription"`
    VpcId string `xml:"vpcId"`
}

func main() {
    auth := aws.Auth{
        AccessKey: os.Getenv("key"),
        SecretKey: os.Getenv("secret"),
    }
    region := aws.Region{
        Name : "us-east-1",
    }
    ec2conn := ec2.New(auth, region)
    fmt.Printf("%+v\n", ec2conn)
    resp, err := ec2conn.CreateSecurityGroup(ec2.SecurityGroup{Name: "testing12", 
                                          Description: "testing123", VpcId: "vpc-123456"})
    fmt.Printf("%+v\n", resp)
    if err != nil {
        fmt.Printf("%s\n", err.Error())
    }
}

我在执行时得到以下响应。     <nil>     Get /? XXXXXXXXX     unsupported protocol scheme "" 我不确定我们是否明确使用任何协议来创建。 请帮我理解这一点。

0 个答案:

没有答案