forked from ekristen/aws-nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathec2-client-vpn-endpoint-attachment.go
97 lines (77 loc) · 2.46 KB
/
ec2-client-vpn-endpoint-attachment.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package resources
import (
"context"
"fmt"
"github.com/gotidy/ptr"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/aws-nuke/v3/pkg/nuke"
)
const EC2ClientVpnEndpointAttachmentResource = "EC2ClientVpnEndpointAttachment"
func init() {
registry.Register(®istry.Registration{
Name: EC2ClientVpnEndpointAttachmentResource,
Scope: nuke.Account,
Lister: &EC2ClientVpnEndpointAttachmentLister{},
})
}
type EC2ClientVpnEndpointAttachmentLister struct{}
func (l *EC2ClientVpnEndpointAttachmentLister) List(_ context.Context, o interface{}) ([]resource.Resource, error) {
opts := o.(*nuke.ListerOpts)
svc := ec2.New(opts.Session)
endpoints := make([]*string, 0)
params := &ec2.DescribeClientVpnEndpointsInput{}
err := svc.DescribeClientVpnEndpointsPages(params,
func(page *ec2.DescribeClientVpnEndpointsOutput, lastPage bool) bool {
for _, out := range page.ClientVpnEndpoints {
endpoints = append(endpoints, out.ClientVpnEndpointId)
}
return true
})
if err != nil {
return nil, err
}
resources := make([]resource.Resource, 0)
for _, clientVpnEndpointID := range endpoints {
params := &ec2.DescribeClientVpnTargetNetworksInput{
ClientVpnEndpointId: clientVpnEndpointID,
}
err := svc.DescribeClientVpnTargetNetworksPages(params,
func(page *ec2.DescribeClientVpnTargetNetworksOutput, lastPage bool) bool {
for _, out := range page.ClientVpnTargetNetworks {
resources = append(resources, &EC2ClientVpnEndpointAttachments{
svc: svc,
associationID: out.AssociationId,
clientVpnEndpointID: out.ClientVpnEndpointId,
vpcID: out.VpcId,
})
}
return true
})
if err != nil {
return nil, err
}
}
return resources, nil
}
type EC2ClientVpnEndpointAttachments struct {
svc *ec2.EC2
associationID *string
clientVpnEndpointID *string
vpcID *string
}
func (e *EC2ClientVpnEndpointAttachments) Remove(_ context.Context) error {
params := &ec2.DisassociateClientVpnTargetNetworkInput{
AssociationId: e.associationID,
ClientVpnEndpointId: e.clientVpnEndpointID,
}
_, err := e.svc.DisassociateClientVpnTargetNetwork(params)
if err != nil {
return err
}
return nil
}
func (e *EC2ClientVpnEndpointAttachments) String() string {
return fmt.Sprintf("%s -> %s", ptr.ToString(e.clientVpnEndpointID), ptr.ToString(e.vpcID))
}