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
}
測試
執行Go應用程式輸出以下結果。
igw-0f611889b41740e85
在AWS console檢視新建立的VPC Internet gateway。
沒有留言:
張貼留言