resources/acm-pca-certificate-authority.go
package resources
import (
"context"
"fmt"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/acmpca"
"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 ACMPCACertificateAuthorityResource = "ACMPCACertificateAuthority"
func init() {
registry.Register(®istry.Registration{
Name: ACMPCACertificateAuthorityResource,
Scope: nuke.Account,
Resource: &ACMPCACertificateAuthority{},
Lister: &ACMPCACertificateAuthorityLister{},
AlternativeResource: "AWS::ACMPCA::CertificateAuthority",
})
}
type ACMPCACertificateAuthorityLister struct{}
func (l *ACMPCACertificateAuthorityLister) List(_ context.Context, o interface{}) ([]resource.Resource, error) {
opts := o.(*nuke.ListerOpts)
svc := acmpca.New(opts.Session)
var resources []resource.Resource
var tags []*acmpca.Tag
params := &acmpca.ListCertificateAuthoritiesInput{
MaxResults: aws.Int64(100),
}
for {
resp, err := svc.ListCertificateAuthorities(params)
if err != nil {
return nil, err
}
for _, certificateAuthority := range resp.CertificateAuthorities {
tagParams := &acmpca.ListTagsInput{
CertificateAuthorityArn: certificateAuthority.Arn,
MaxResults: aws.Int64(100),
}
for {
tagResp, tagErr := svc.ListTags(tagParams)
if tagErr != nil {
return nil, tagErr
}
tags = append(tags, tagResp.Tags...)
if tagResp.NextToken == nil {
break
}
tagParams.NextToken = tagResp.NextToken
}
resources = append(resources, &ACMPCACertificateAuthority{
svc: svc,
ARN: certificateAuthority.Arn,
Status: certificateAuthority.Status,
Tags: tags,
})
}
if resp.NextToken == nil {
break
}
params.NextToken = resp.NextToken
}
return resources, nil
}
type ACMPCACertificateAuthority struct {
svc *acmpca.ACMPCA
ARN *string `description:"The Amazon Resource Name (ARN) of the private CA."`
Status *string `description:"Status of the private CA."`
Tags []*acmpca.Tag `description:"Tags attached to the private CA."`
}
func (r *ACMPCACertificateAuthority) Remove(_ context.Context) error {
_, err := r.svc.DeleteCertificateAuthority(&acmpca.DeleteCertificateAuthorityInput{
CertificateAuthorityArn: r.ARN,
})
return err
}
func (r *ACMPCACertificateAuthority) String() string {
return *r.ARN
}
func (r *ACMPCACertificateAuthority) Filter() error {
if *r.Status == "DELETED" {
return fmt.Errorf("already deleted")
} else {
return nil
}
}
func (r *ACMPCACertificateAuthority) Properties() types.Properties {
return types.NewPropertiesFromStruct(r)
}