Skip to content

Commit

Permalink
Merge pull request #3314 from shraddhabang/rsaFilter
Browse files Browse the repository at this point in the history
Update the RSA filter for Cert discovery
  • Loading branch information
k8s-ci-robot authored Aug 9, 2023
2 parents 78d101d + d6844b8 commit 573e023
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/ingress/cert_discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ func (d *acmCertDiscovery) loadAllCertificateARNs(ctx context.Context) ([]string
}
req := &acm.ListCertificatesInput{
CertificateStatuses: aws.StringSlice([]string{acm.CertificateStatusIssued}),
Includes: &acm.Filters{
KeyTypes: aws.StringSlice(acm.KeyAlgorithm_Values()),
},
}
certSummaries, err := d.acmClient.ListCertificatesAsList(ctx, req)
if err != nil {
Expand Down

0 comments on commit 573e023

Please sign in to comment.