Amazon Certificate Manager provides a LimitExceededException

I have a new AWS account with no certificates associated with it.

Here's what it looks like when I try to request a certificate for a domain through Amazon Certificate Manager:

Error message when requesting a certificate. [1]

Trying a command aws acm request-certificatefrom the command line gives me:

An error occurred (LimitExceededException) when calling the 
RequestCertificate operation: Cannot request more certificates in this account. 
Contact Customer Service for details

The documentation indicates limitations, but I do not have certificates, so I should not have exceeded it.

enter image description here

Any ideas what could be the problem?

+4
source share
2 answers

This was resolved by AWS, not sure what the actual issue was.

0
source

"aws acm list-certificate", - , . :

hannah@Hannah-PC:~$ aws acm list-certificates
{
    "CertificateSummaryList": []
}
hannah@Hannah-PC:~$ grep region .aws/config 
region = ap-southeast-2

, - east-1:

hannah@Hannah-PC:~$ aws acm list-certificates --region=us-east-1
{
    "CertificateSummaryList": [
        {
            "CertificateArn": "arn:aws:acm:us-east-1:31234512345:certificate/XXXXXX-XXXX-XXXX-XXXX-XXXXXX",
            "DomainName": "whatever.net"
        }
    ]
}

SSL- -east-1 CloudFront, .

0

Source: https://habr.com/ru/post/1650334/


All Articles