Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.22 KB

README.md

File metadata and controls

28 lines (22 loc) · 1.22 KB

terraform-aws-acm-certificate

This Terraform module creates TLS/SSL certificate in Amazon Certificate Manager (ACM), and validates it with DNS by creating required Route 53 validation record in the given Route 53 hosted zone.

This module creates the following resources:

Usage

module "wildcard_certificate" {
  source              = "https://github.com/traveloka/terraform-aws-acm-certificate?ref=vX.Y.Z"
  domain_name         = "*.pda.example.com"
  hosted_zone_name    = "pda.example.com"
  certificate_name    = "wildcard.pda.example.com"
  environment         = "production"
  description         = "Wildcard certificate for pda.example.com"
  product_domain      = "pda"
}

Examples

Please see examples directory for examples on how to use this module.

Authors

Module managed by BernardSiahaan