0

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 "" プロトコルを明示的に使用して作成するかどうかはわかりません。これを理解するのを手伝ってください。

4

0 に答える 0