aws acm 导入证书抛出 LimitExceededException
aws acm import-certificate throws LimitExceededException
我曾经每周通过 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个月前导入的证书。现在不幸过期了。
AWS 解决了我的问题。我终于发布了增加限制的支持请求 "Number of ACM certificates"。现在我可以成功导入新证书了。希望这对其他人有帮助。
我曾经每周通过 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个月前导入的证书。现在不幸过期了。
AWS 解决了我的问题。我终于发布了增加限制的支持请求 "Number of ACM certificates"。现在我可以成功导入新证书了。希望这对其他人有帮助。