forked from rebuy-de/aws-nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ec2-tgw.go
81 lines (65 loc) · 1.44 KB
/
ec2-tgw.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package resources
import (
"fmt"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/rebuy-de/aws-nuke/pkg/types"
)
type EC2TGW struct {
svc *ec2.EC2
tgw *ec2.TransitGateway
}
func init() {
register("EC2TGW", ListEC2TGWs)
}
func ListEC2TGWs(sess *session.Session) ([]Resource, error) {
svc := ec2.New(sess)
params := &ec2.DescribeTransitGatewaysInput{}
resources := make([]Resource, 0)
for {
resp, err := svc.DescribeTransitGateways(params)
if err != nil {
return nil, err
}
for _, tgw := range resp.TransitGateways {
resources = append(resources, &EC2TGW{
svc: svc,
tgw: tgw,
})
}
if resp.NextToken == nil {
break
}
params = &ec2.DescribeTransitGatewaysInput{
NextToken: resp.NextToken,
}
}
return resources, nil
}
func (e *EC2TGW) Remove() error {
params := &ec2.DeleteTransitGatewayInput{
TransitGatewayId: e.tgw.TransitGatewayId,
}
_, err := e.svc.DeleteTransitGateway(params)
if err != nil {
return err
}
return nil
}
func (e *EC2TGW) Filter() error {
if *e.tgw.State == "deleted" {
return fmt.Errorf("already deleted")
}
return nil
}
func (e *EC2TGW) Properties() types.Properties {
properties := types.NewProperties()
for _, tagValue := range e.tgw.Tags {
properties.SetTag(tagValue.Key, tagValue.Value)
}
properties.Set("ID", e.tgw.TransitGatewayId)
return properties
}
func (e *EC2TGW) String() string {
return *e.tgw.TransitGatewayId
}