项目作者: hendrixroa

项目描述 :
A prebuilt module for automate the acm certification in route 53.
高级语言: HCL
项目地址: git://github.com/hendrixroa/terraform-aws-acm-certification.git
创建时间: 2019-12-27T19:45:52Z
项目社区:https://github.com/hendrixroa/terraform-aws-acm-certification

开源协议:Apache License 2.0

下载


ACM Certification

Module prebuilt for automate the ACM Certification adding automatically the DNS Records into Route 53.

  • Terraform versions: 0.13.+ and 0.12

How to use

  1. # Using terrform version >= 0.13
  2. module "acm-myorganization" {
  3. source = "hendrixroa/acm-certification/aws"
  4. domain = "your.domain.com"
  5. route53_zone = "your zone id"
  6. }
  1. # Using terraform 0.12 version
  2. module "acm-myorganization" {
  3. source = "hendrixroa/acm-certification/aws"
  4. version = "~> 0.12.0"
  5. domain = "your.domain.com"
  6. route53_zone = "your zone id"
  7. }