Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

AWS - Certificate Manager (ACM)

Back


AWS Certificate Manager (ACM)

acm_diagram


Requesting Public Certificates

  1. List domain names to be included in the certificate
    • Fully Qualified Domain Name (FQDN):
      • e.g.: corp.example.com
    • Wildcard Domain:
      • e.g.:*.example.com
  2. Select Validation Method: DNS Validation or Email validation
    • DNS Validation is preferred for automation purposes
      • will leverage a CNAME record to DNS config(ex: Route 53)
    • Email validation will send emails to contact addresses in the WHOIS database
  3. It will take a few hours to get verified
  4. The Public Certificate will be enrolled for automatic renewal
    • ACM automatically renews ACM-generated certificates 60 days before expiry

Importing Public Certificates

acm_expiry_check


Example: Integration with ALB

acm_alb_example


Example: Integrate with API Gateway

acm_api_gateway_edge

acm_api_gateway_region


TOP