AWS ACM导入证书抛出LimitExceededException

时间:2019-05-23 20:30:33

标签: aws-certificate-manager

我以前每周都会通过bash脚本自动将证书导入AWS Certificate Manager。直到几周前,它的效果都很好。它开始失败并出现以下异常:

An error occurred (LimitExceededException) when calling the ImportCertificate operation: You have imported the maximum number of 20 certificates in the last year.

通过谷歌搜索这个问题我找不到很多帮助。我是否必须增加任何AWS限制?哪一个?

以下是一些可以帮助您的信息:

我如何导入证书:

aws acm import-certificate --region eu-central-1 --certificate file:///etc/letsencrypt/live/my.domain/cert.pem --private-key file:///etc/letsencrypt/live/my.domain/privkey.pem --certificate-chain file:///etc/letsencrypt/live/my.comain/chain.pem --certificate-arn arn:aws:acm:eu-central-1:<some-number>:certificate/<some-uuid>

aws acm list-certificates的输出:

{
    "CertificateSummaryList": [
        {
            "CertificateArn": "arn:aws:acm:eu-central-1:<some-number>:certificate/<some-uuid>",
            "DomainName": "my.domain"
        }
    ]
}

这是我3个月前导入的证书。不幸的是,现在它已经过期了。

1 个答案:

答案 0 :(得分:0)

AWS解决了我的问题。我终于发布了一个支持请求,以增加限制“ ACM证书的数量”。现在,我可以成功导入新证书了。希望这对其他人有帮助。

相关问题