Skip to content

JordiiBru/aws-acm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-acm

Terraform module to create an ACM (AWS Certificate Manager) certificate with Route 53 resources for DNS validation.

Required Variables

Name Description Type Validation Default
stage Stage of development string test, dev, staging, prod N/A
purpose Short description about the created resource string Must match the regex ^[a-zA-Z0-9-_]*$ N/A
owner Owner of the deployed infrastructure string Must have more than three characters N/A
domain_name Name of the domain string Must have more than three characters N/A

Optional Variables

Name Description Type Default
validate_cert Validate the certificate bool false

Usage

module "acm" {
  source = "../"

  # Required variables
  stage       = "test"
  owner       = "wanda"
  purpose     = "tfg"
  domain_name = "domain.com"

  # Optional variables
  validate_cert = true
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages