AdSense

網頁

2023/3/30

Golang 建立AWS VPC Internet gateway附加到VPC

Go以AWS提供的SDK aws-sdk-go-v2建立VPC Internet gateway



事前要求

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

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


建立VPC Internet gateway

呼叫ec2.Client.CreateInternetGateway傳入參數ec2.CreateInternetGatewayInput來建立Internet gateway。

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

types.TagSpecification.ResourceType填入types.ResourceTypeInternetGateway

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

呼叫ec2.Client.AttachInternetGateway傳入參數ec2.AttachInternetGatewayInput附加Internet gateway於VPC。

AttachInternetGatewayInput.InternetGatewayId填入internet gateway ID。

AttachInternetGatewayInput.VpcId填入VPC ID。

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)

    key := "Name"
    value := "demo-internet-gateway-002"

    createInternetGatewayInput := &ec2.CreateInternetGatewayInput{
        TagSpecifications: []types.TagSpecification{
            {
                ResourceType: types.ResourceTypeInternetGateway,
                Tags: []types.Tag{
                    {
                        Key:   &key,
                        Value: &value,
                    },
                },
            },
        },
    }

    createInternetGatewayOutput, err := client.CreateInternetGateway(ctx, createInternetGatewayInput)
    if err != nil {
        panic(err)
    }

    internetGatewayId := *createInternetGatewayOutput.InternetGateway.InternetGatewayId
    fmt.Println(internetGatewayId) // igw-0f611889b41740e85

    vpcId := "vpc-019a7b633eda5caae"
    attachInternetGatewayInput := &ec2.AttachInternetGatewayInput{
        InternetGatewayId: &internetGatewayId,
        VpcId:             &vpcId,
    }

    _, err = client.AttachInternetGateway(ctx, attachInternetGatewayInput)
    if err != nil {
        panic(err)
    }

}

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應用程式輸出以下結果。

igw-0f611889b41740e85

在AWS console檢視新建立的VPC Internet gateway。




沒有留言:

AdSense