nehrman / terraform-aws-acm-certificate

Terraform module for AWS ACM Certificate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AWS ACM Certificate Terraform Module

A Terraform module which allows requesting and management of certificates from Amazon Certificate Manager.

This type of resource is supported :

Features

The goal of this module is to give a standard way of generating and managing certificates issued by Amazon. The module supports :

  • Domain Name
  • Subject Alternatives Names
  • Validation Method
  • Tags

Terraform versions

Support of Terraform 0.12 is not yet implemented. (WIP)

If you are using Terraform 0.11 you can use versions v1.*.

Usage

Certificate Creation example:

module "aws_acm_certificate_tower" {
  source                = "app.terraform.io/<ORG_NAME>/acm-certificate/aws"
  acm_domain_name       = "yourdomain.name"
  acm_san               = ["apps.yourdomain.com","db.yourdomain.com"]
  acm_validation_method = "DNS"
}

Authors

About

Terraform module for AWS ACM Certificate


Languages

Language:HCL 100.0%