Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

trussworks/terraform-aws-acm-cert-akamai-dns

Creates a TLS certificate using AWS ACM for domains hosted on Akamai. The ACM certificate can also be attached to an ALB listener.

Creates the following resources:

  • ACM certificate
  • Akamai Fast DNS CNAME used to validate TLS certificate
  • Optional association with an ALB listener

Usage

module "acm_cert" {
  source = "trussworks/acm-cert-akamai-dns/aws"

  zone_name   = "example.com"
  domain_name = "www.example.com"
}

Inputs

Name Description Type Default Required
alb_listener_arn (Optional) Associate ACM certificate to and ALB listener. string "" no
domain_name Domain name to associate with the ACM certificate. string n/a yes
environment Environment tag. string n/a yes
zone_name The Akamai Fast DNS zone name. string n/a yes

Outputs

Name Description
acm_arn The ARN of the validated ACM certificate.