We are huge followers of the Cloud-Native DevOps movement and are firm believers in the power of treating Infrastructure as Code using immutable architecture & GitOps style deployments. We adhere to a strict automation mindset (automation first, as opposed to manual first with automation later) and strive to provide the best technical acumen that will enable organizations improve Cloud Security Posture, Release More Often, Scale with Demand, Brace Agility, Operate within Budget and focus on value derived by the time saved on the execution of a task rather than having to spend cycles on design & tool selection.
✔ Better utilization of cloud resources by 40%
✔ Self-service infrastructure provisioning by 35%
✔ Security and governance by 30%
✔ Return on value/investment by 20%
✔ Team management & governance by 15%
✔ Earlier detection of bugs by 32%
✔ Response to issues/events by 23%
Chat more? Email | Contact us
Provisions a AWS ACM certificate
Creates a amazon issued certificate
- A domain for the certificate must exist
module "aws_acm_cert" {
source = "git::https://github.com/LaunchRack/terraform-aws-acm-cert.git"
domain_name = "example.com"
name = "example_public_certificate"
tags = {
BusinessUnit = "tools"
Application = "cicd"
}
}
terraform init
terraform plan
# use -var-file=terraform.tfvars
if you plan to use a different file for the value overrides. See examples folder
terraform apply -auto-approve
# use -var-file=terraform.tfvars
if you plan to use a different file for the value overrides. See examples folder
Note: The
terraform.tfvars
file will need to be created in the root directory with value overrides
Name | Version |
---|---|
terraform | ~> 1.0 |
aws | ~> 4.0 |
local | ~> 2.0 |
null | ~> 3.0 |
Name | Version |
---|---|
aws | ~> 4.0 |
Name | Type |
---|---|
aws_acm_certificate.certificate | resource |
aws_acm_certificate_validation.validation | resource |
aws_route53_record.validation_record | resource |
aws_route53_zone.hosted_zone | data source |
Name | Description | Type | Default | Required |
---|---|---|---|---|
domain_name | The domain name that the website will be nested under. Must be the root domain and not include www. (e.g. google.com). | string |
"" |
yes |
name | Name for the acm certificate. | string |
"" |
yes |
tags | A map of tags for the resources. | map(string) |
{} |
no |
Name | Description |
---|---|
acm_certificate_arn | The ARN of the provisioned acm certificate. |
This module is maintained by our awsome platform engineering team. Here are our contributors
See LICENSE for full details
All other trademarks referenced herein are the property of their respective owners