Questions tagged [aws-certificate-manager]

Certificate Manage is an offering by Amazon Web Services. It lets you easily provision, manage, and deploy Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificates for use with AWS services.

From the AWS product page:

AWS Certificate Manager is a service that lets you easily provision, manage, and deploy Secure Sockets Layer/Transport Layer Security (SSL/TLS) certificates for use with AWS services. SSL/TLS certificates are used to secure network communications and establish the identity of websites over the Internet. AWS Certificate Manager removes the time-consuming manual process of purchasing, uploading, and renewing SSL/TLS certificates.

With AWS Certificate Manager, you can quickly request a certificate, deploy it on AWS resources such as Elastic Load Balancers or Amazon CloudFront distributions, and let AWS Certificate Manager handle certificate renewals. SSL/TLS certificates provisioned through AWS Certificate Manager are free. You pay only for the AWS resources you create to run your application.

235 questions
8
votes
3 answers

Terraform: Creating and validating multiple ACM certificates

I'm running into a really confusing Terraform resource issue automating the generation and DNS validation of SSL certificates in ACM for a list of (Terraform-managed) hosted zones. Code can also be found in this gist. I'm starting by bootstrapping…
7
votes
2 answers

Why isn't my AWS ACM certificate validating?

I have a domain name registered in AWS Route53 with an ACM certificate. I am now attempting to both move that domain name and certificate to a new account as well as manage the resources with Terraform. I used the AWS CLI to move the domain name to…
mmachenry
  • 1,773
  • 3
  • 22
  • 38
7
votes
1 answer

How to validade a AWS Certificate with Hostinger domain?

I'm getting trouble to validate my AWS Certificate Manager with a Hostinger domain using DNS validation. I've already followed the tips from DNS Validation for GoDaddy domain with ACM that worked for GoDaddy. Also, I've checked all the problems…
Pedro Arantes
  • 5,113
  • 5
  • 25
  • 60
6
votes
1 answer

Terraform, AWS and importing existing SSL certificates

I'm working in a project where I have gotten a situation which I can't get the path to succeed. Truth is I'm running terraform code through a pipeline, this code depends on a bunch of certificates that have been added through AWS web console, so I…
6
votes
1 answer

AWS Amplify use ssl certificate in spring boot backend for https

I made a frontend in aws amplify and created a custom domain over amplify with route 53. Then I created a subdomain, for example api.domain.com for my spring boot backend rest api. The subdomain only uses http. For using it with https I need to…
6
votes
2 answers

ENOENT error - Installing aws-cdk node module

After running command: sudo npm i -g aws-cdk gives error: npm ERR! Linux 4.4.0-151-generic npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "i" "-g" "aws-cdk" npm ERR! node v4.2.6 npm ERR! npm v3.5.2 npm ERR! path…
overexchange
  • 15,768
  • 30
  • 152
  • 347
6
votes
2 answers

AWS ACM Certificate Management Delete Certificate In Use

I want to delete an in-use AWS certificate in my AWS Certificate Manager. To do this, I am using the suggested AWS CLI with the following command: aws iam delete-server-certificate --server-certificate-name The problem is, the certificate in…
6
votes
1 answer

AWS - Have https endpoints for both www and non-www endpoints using Route53, ACM, Cloudfront

I have a static webpage on AWS S3 with Cloudfront. Cloudfront is setup with ACM (AWS Certificate Manager) and am using Route 53 with it. How can I have both the www.my-endpoint.com and my-endpoint.com endpoints secure with https? Here are some…
5
votes
1 answer

Unable to attach ACM Public certificate with ALB Listener using Lambda across account

I am creating ACM public certificate in AWS organization account using lambda function from master account, code to create ACM Cert and attach with listener is: resp_acm = client_acm.request_certificate( DomainName='test.example.com', …
5
votes
2 answers

Certificate in ACM which can't be deleted - attached to AWS internal Resources

I've got one certificate in ACM which was previously used for having a custom domain at an API Gateway. As I learned here, AWS creates some resources at an internal AWS Account like ELBs which will be attached to the Certificate. Issue with this is:…
tpschmidt
  • 2,479
  • 2
  • 17
  • 30
5
votes
3 answers

Is it possible in a .NET Core application to retrieve a certificate from AWS Certificate Manager and use it in a HttpClient post?

My .Net core application makes a post request to an external web service using HttpClient. The external web service requires a certificate to validate against. The certificates are installed in AWS and I have an ARN that points to the…
WooHoo
  • 1,912
  • 17
  • 22
5
votes
3 answers

AWS Same wildcard certificate in different regions

Is it safe to request same wildcard certificate in different regions? I'm using one connected to production ELB in Ireland region, but I need the same in N.Virginia region to connect it to CloudFront.
4
votes
4 answers

AWS ACM - One or more domain names have failed validation due to a Certificate Authority Authentication (CAA) error

I am using Window Server 2019 for DNS management. I have created a public SSL certificate for domain *.example.mydomain.hk in AWS Certificate Manager(ACM) After that, I add The DNS configuration for the SSL cert. Below image is get from online. My…
4
votes
2 answers

How to specify region in Cloudformation template to validate the ACM certificate via DNS

I am writing a Cloudformation template to request an ACM certificate for the Cloudfront to have SSL via DNS My template: ACMCertificate: Type: "AWS::CertificateManager::Certificate" Properties: DomainName: mywebsite.com …
4
votes
1 answer

How can I use the same domain name in different AWS accounts?

I want to use the same domain name in different AWS account. The domain is hosted by AWS. I have two accounts: Account A and Account B. In Account A, I have created a certificate with AWS Certificate Manager to have a custom domain name like…
1
2
3
15 16