Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
burib authored Nov 15, 2024
1 parent 53c4145 commit e8b5b07
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# terraform-aws-module-template
# terraform-route53-with-wildcard-acm-module

## github template to start writing versioned terraform module
### creates a Route53 Public Hosted Zone with Wildcard ACM Certificate validated through dns records.
###### For DNS validation make sure the propagation works by creating the required NS records after the HZ is created.
###### Otherwise the certificate will never get verified and terraform keeps hanging.


# Usage example:
```terraform
module "my_awesome_domain" {
source = "github.com/burib/terraform-route53-with-acm?ref=v0"
domain = local.is_prod ? "example.com" : "${var.environment}.example.com"
}
```

0 comments on commit e8b5b07

Please sign in to comment.