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
module "acm_cert" {
source = "trussworks/acm-cert-akamai-dns/aws"
zone_name = "example.com"
domain_name = "www.example.com"
}
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 |
Name | Description |
---|---|
acm_arn | The ARN of the validated ACM certificate. |