AdSense

網頁

2023/3/30

Golang 建立AWS VPC Route table

Go以AWS提供的SDK aws-sdk-go-v2建立VPC Route table



事前要求

參考「AWS 建立IAM管理使用者及credentials」設定供應用程式存取AWS需要的credentials。

參考「Golang 建立AWS VPC」建立VPC。


建立VPC Route table

呼叫ec2.Client.CreateRouteTable傳入參數ec2.CreateRouteTableInput來建立VPC Route table。

ec2.CreateRouteTableInput.VpcID填入VPC ID。

ec2.CreateRouteTableInput.TagSpecifications新增多個tag資訊,填入types.TagSpecification

types.TagSpecification.ResourceType填入types.ResourceTypeRouteTable

types.TagSpecification.Tags填入多個types.Tag,設定types.Tag.Key為"Name"的值為Route table的名稱。

main.go

package main

import (
    "context"
    "fmt"

    "github.com/aws/aws-sdk-go-v2/config"
    "github.com/aws/aws-sdk-go-v2/service/ec2"
    "github.com/aws/aws-sdk-go-v2/service/ec2/types"
)

func main() {
    ctx := context.TODO()
    client := NewEC2Client(ctx)

    vpcId := "vpc-019a7b633eda5caae"
    key := "Name"
    value := "demo-route-table-002"

    input := &ec2.CreateRouteTableInput{
        VpcId: &vpcId,
        TagSpecifications: []types.TagSpecification{
            {
                ResourceType: types.ResourceTypeRouteTable,
                Tags: []types.Tag{
                    {
                        Key:   &key,
                        Value: &value,
                    },
                },
            },
        },
    }

    output, err := client.CreateRouteTable(ctx, input)

    if err != nil {
        panic(err)
    }
    fmt.Println(*output.RouteTable.VpcId)        // vpc-019a7b633eda5caae
    fmt.Println(*output.RouteTable.RouteTableId) // rtb-0b0e21c8e3b1cda13
    if len(output.RouteTable.Routes) > 0 {
        fmt.Println(*output.RouteTable.Routes[0].DestinationCidrBlock) // 10.1.0.0/24
    }
}

func NewEC2Client(ctx context.Context) *ec2.Client {
    cfg, err := config.LoadDefaultConfig(
        ctx,
        config.WithRegion("ap-northeast-1"),
    )
    if err != nil {
        panic(err)
    }

    return ec2.NewFromConfig(cfg) // Create an Amazon EC2 service client
}

github


測試

執行Go應用程式輸出以下結果。

vpc-019a7b633eda5caae
rtb-0b0e21c8e3b1cda13
10.1.0.0/24

在AWS console檢視新建立的VPC Route table。




沒有留言:

AdSense