forked from ekristen/aws-nuke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacm-certificate.go
117 lines (94 loc) · 2.91 KB
/
acm-certificate.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package resources
import (
"context"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/acm"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"
"github.com/ekristen/aws-nuke/v3/pkg/nuke"
)
const ACMCertificateResource = "ACMCertificate"
func init() {
registry.Register(®istry.Registration{
Name: ACMCertificateResource,
Scope: nuke.Account,
Resource: &ACMCertificate{},
Lister: &ACMCertificateLister{},
})
}
type ACMCertificateLister struct{}
func (l *ACMCertificateLister) List(_ context.Context, o interface{}) ([]resource.Resource, error) {
opts := o.(*nuke.ListerOpts)
svc := acm.New(opts.Session)
var resources []resource.Resource
params := &acm.ListCertificatesInput{
MaxItems: aws.Int64(100),
Includes: &acm.Filters{
KeyTypes: aws.StringSlice([]string{
acm.KeyAlgorithmEcPrime256v1,
acm.KeyAlgorithmEcSecp384r1,
acm.KeyAlgorithmEcSecp521r1,
acm.KeyAlgorithmRsa1024,
acm.KeyAlgorithmRsa2048,
acm.KeyAlgorithmRsa4096,
})},
}
for {
resp, err := svc.ListCertificates(params)
if err != nil {
return nil, err
}
for _, certificate := range resp.CertificateSummaryList {
// Unfortunately the ACM API doesn't provide the certificate details when listing, so we
// have to describe each certificate separately.
certificateDescribe, err := svc.DescribeCertificate(&acm.DescribeCertificateInput{
CertificateArn: certificate.CertificateArn,
})
if err != nil {
return nil, err
}
tagParams := &acm.ListTagsForCertificateInput{
CertificateArn: certificate.CertificateArn,
}
tagResp, tagErr := svc.ListTagsForCertificate(tagParams)
if tagErr != nil {
return nil, tagErr
}
resources = append(resources, &ACMCertificate{
svc: svc,
ARN: certificate.CertificateArn,
DomainName: certificateDescribe.Certificate.DomainName,
Status: certificateDescribe.Certificate.Status,
CreatedAt: certificateDescribe.Certificate.CreatedAt,
Tags: tagResp.Tags,
})
}
if resp.NextToken == nil {
break
}
params.NextToken = resp.NextToken
}
return resources, nil
}
type ACMCertificate struct {
svc *acm.ACM
ARN *string `description:"The ARN of the certificate"`
DomainName *string `description:"The domain name of the certificate"`
Status *string `description:"The status of the certificate"`
CreatedAt *time.Time `description:"The creation time of the certificate"`
Tags []*acm.Tag `description:"The tags of the certificate"`
}
func (r *ACMCertificate) Remove(_ context.Context) error {
_, err := r.svc.DeleteCertificate(&acm.DeleteCertificateInput{
CertificateArn: r.ARN,
})
return err
}
func (r *ACMCertificate) Properties() types.Properties {
return types.NewPropertiesFromStruct(r)
}
func (r *ACMCertificate) String() string {
return *r.ARN
}