本文整理汇总了Golang中github.com/aws/aws-sdk-go/service/ec2.EC2.AttachInternetGateway方法的典型用法代码示例。如果您正苦于以下问题:Golang EC2.AttachInternetGateway方法的具体用法?Golang EC2.AttachInternetGateway怎么用?Golang EC2.AttachInternetGateway使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/aws/aws-sdk-go/service/ec2.EC2
的用法示例。
在下文中一共展示了EC2.AttachInternetGateway方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: attachGatewayToVpc
func attachGatewayToVpc(ec2Client *ec2.EC2, internetGatewayID string, vpcID string) (success bool, warnings []string, err []error) {
attachGatewayOutput, attachError := ec2Client.AttachInternetGateway(&ec2.AttachInternetGatewayInput{
InternetGatewayID: &internetGatewayID,
VPCID: &vpcID,
})
if attachError != nil {
err = append(err, attachError)
log.WithFields(log.Fields{
"AWS Error": err,
"VpcID": vpcID,
"InternetGatewayID": internetGatewayID,
"Output": attachGatewayOutput,
}).Error("Error attaching InternetGateway to VPC")
return false, warnings, err
}
return true, warnings, err
}
示例2: createGateway
func createGateway(svc *ec2.EC2, vpc *ec2.Vpc, subid *string) error {
cigi := &ec2.CreateInternetGatewayInput{}
cigo, err := svc.CreateInternetGateway(cigi)
if err != nil {
fmt.Println("Failed to create gateway.")
return err
}
//fmt.Println("We have vpcid: " + *vpc.VpcId)
_, err = svc.AttachInternetGateway(&ec2.AttachInternetGatewayInput{InternetGatewayId: cigo.InternetGateway.InternetGatewayId, VpcId: vpc.VpcId})
if err != nil {
fmt.Println("Failed to attach gateway.")
return err
}
defr := "0.0.0.0/0"
rtid, err := getMainRouteTableFromVPC(svc, vpc.VpcId)
if err != nil {
fmt.Println("Failed to get route table from VPC id.")
panic(err)
}
cri := &ec2.CreateRouteInput{DestinationCidrBlock: &defr, GatewayId: cigo.InternetGateway.InternetGatewayId, RouteTableId: rtid}
_, err = svc.CreateRoute(cri)
//fmt.Println(cro)
if err != nil {
fmt.Println("Failed to create default route.")
return err
}
arti := &ec2.AssociateRouteTableInput{RouteTableId: rtid, SubnetId: subid}
_, err = svc.AssociateRouteTable(arti)
//fmt.Println(arto)
if err != nil {
fmt.Println("Failed to associate subnet with route table.")
return err
}
return nil
}