本文整理汇总了Golang中github.com/aws/aws-sdk-go/service/ec2.EC2.AssociateRouteTable方法的典型用法代码示例。如果您正苦于以下问题:Golang EC2.AssociateRouteTable方法的具体用法?Golang EC2.AssociateRouteTable怎么用?Golang EC2.AssociateRouteTable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/aws/aws-sdk-go/service/ec2.EC2
的用法示例。
在下文中一共展示了EC2.AssociateRouteTable方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: validateAssociations
func validateAssociations(ec2Client *ec2.EC2, routeTable *providers.RouteTable, existingRouteTableAssociations []*ec2.RouteTableAssociation, subnets []providers.Subnet) (success bool, warning []string, err []error) {
success = false
for configAssocSubnetsNames := range routeTable.AssocSubnetNames {
routeSubnetID := getSubnetIDByName(routeTable.AssocSubnetNames[configAssocSubnetsNames], subnets)
for existingAssocSubnet := range existingRouteTableAssociations {
log.Info("RouteTableAssoc %v", existingRouteTableAssociations[existingAssocSubnet].SubnetID)
if routeSubnetID == *existingRouteTableAssociations[existingAssocSubnet].SubnetID {
success = true
}
}
caOutput, caError := ec2Client.AssociateRouteTable(&ec2.AssociateRouteTableInput{
RouteTableID: &routeTable.RouteTableID,
SubnetID: &routeSubnetID,
})
if caError != nil {
success = false
err = append(err, caError)
} else {
log.WithFields(log.Fields{
"Route Table Id": routeTable.RouteTableID,
"Subnet Id": routeSubnetID,
"Subnet Name": routeTable.AssocSubnetNames[configAssocSubnetsNames],
"Association Id": *caOutput.AssociationID,
}).Info("Associated Subnet with Route Table.")
success = true
}
}
return success, warning, err
}
示例2: createPrivateRouteTable
func createPrivateRouteTable(svc *ec2.EC2, config *Config) (*string, error) {
crt := &ec2.CreateRouteTableInput{VpcId: &config.VpcId}
crto, err := svc.CreateRouteTable(crt)
if err != nil {
fmt.Println("Failed to create private route table.")
return nil, err
}
arti := &ec2.AssociateRouteTableInput{RouteTableId: crto.RouteTable.RouteTableId, SubnetId: &config.PrivateSubnetId}
_, err = svc.AssociateRouteTable(arti)
//fmt.Println(arto)
if err != nil {
fmt.Println("Failed to associate private subnet with route table.")
return nil, err
}
return crto.RouteTable.RouteTableId, nil
}
示例3: 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
}