项目作者: Aplyca

项目描述 :
Terraform AWS Certificate Manager module
高级语言: HCL
项目地址: git://github.com/Aplyca/terraform-aws-acm.git
创建时间: 2018-04-17T21:56:33Z
项目社区:https://github.com/Aplyca/terraform-aws-acm

开源协议:MIT License

下载


Terraform AWS Certificate Manager module

Create and validate a Certificate with AWS Certificate manager. Support multi-domain certificates

Example

  1. module "certificate" {
  2. source = "Aplyca/acm/aws"
  3. domain = "example.com"
  4. zone_ids = [
  5. "***********",
  6. "***********"
  7. ]
  8. alternative_domains = [
  9. "*.example.com"
  10. ]
  11. tags {
  12. Name = "Example"
  13. }
  14. }