当前位置: 首页>>代码示例>>Golang>>正文


Golang EC2.AssociateRouteTable方法代码示例

本文整理汇总了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
}
开发者ID:podtools,项目名称:pod,代码行数:29,代码来源:Awsprovider.go

示例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

}
开发者ID:jamesunger,项目名称:saws,代码行数:19,代码来源:saws.go

示例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

}
开发者ID:jamesunger,项目名称:saws,代码行数:40,代码来源:saws.go


注:本文中的github.com/aws/aws-sdk-go/service/ec2.EC2.AssociateRouteTable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。