AdSense

網頁

2023/3/30

Golang 建立AWS VPC

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



事前要求

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

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


建立VPC

呼叫ec2.Client.CreateVpc傳入參數ec2.CreateVpcInput來建立VPC。

ec2.CreateVpcInput.CidrBlock填入VPC的IPv4 CIDR block(e.g. 10.1.0.0/24)。

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

types.TagSpecification.ResourceType填入types.ResourceTypeVpc

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

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-vpc-002"

    cidrBlock := "10.1.0.0/24"
    input := &ec2.CreateVpcInput{
        CidrBlock: &cidrBlock,
        TagSpecifications: []types.TagSpecification{
            {
                ResourceType: types.ResourceTypeVpc,
                Tags: []types.Tag{
                    {
                        Key:   &key,
                        Value: &value,
                    },
                },
            },
        },
    }
    output, err := client.CreateVpc(ctx, input)
    if err != nil {
        panic(err)
    }
    fmt.Println(*output.Vpc.VpcId)     // vpc-019a7b633eda5caae
    fmt.Println(*output.Vpc.CidrBlock) // 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
10.1.0.0/24

在AWS console檢視新建立的VPC。




沒有留言:

AdSense