acm

appzen-oss/acm/aws

Terraform Module HCL AWS

AWS cert manager module

Install
module "acm" {
source = "appzen-oss/acm/aws"
version = "0.0.1"
}
plain text: /constructs/tfmod-appzen-oss-acm-aws/install.txt
⭐ Source on GitHub 📦 Registry page
README

terraform-aws-acm A terraform module to create and maintain SSL certs through AWS ACM. Assumption You want to create a certificate through ACM You want to create DNS entries for certificate validation. * You've creaated AWS R53 parent zone. Required - dns_parent_zone_name - AWS parent zone - acm_cert_domain - SSL certificate domain name - environment - Environment (ex: dev, qa, stage, prod). Usage ``hcl module "acm_cert" { source = "git::https://github.com/appzen-oss/terraform-aws-acm.git?ref=master" dns_parent_zone_name = "${var.dns_parent_zone_name}" acm_cert_domain = "${var.acm_cert_domain}" environment = "${var.environment}" } ` Inputs | Name | Description | Type | Required | |------|-------------|----|:-----:| | acm\_cert\_domain | Domain name of ACM-managed certificate | string | yes

Inputs (3)
NameTypeDescriptionDefault
acm_cert_domainstringCertificate domain name. required
dns_parent_zone_namestringDNS name of the parent zone. required
environmentstringEnvironment (ex: `dev`, `qa`, `stage`, `prod`). required
Outputs (1)
certificate_arn — ARN of the certificate
Resources (2)
aws_acm_certificateaws_route53_record
Details
FrameworkTerraform Module
LanguageHCL
Version0.0.1
Cloud AWS
★ Stars0
Forks1
Total downloads6.0k
Inputs3
Outputs1
Resources2
Namespaceappzen-oss
Updated