From 679fbf91b74d0f5174b1afe331ed767ebb8ae2f8 Mon Sep 17 00:00:00 2001 From: Erik Osterman Date: Wed, 20 Sep 2017 13:17:38 -0700 Subject: [PATCH] Rename repo (#6) --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a0eb1bd..d6cce0e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ -# tf_vanity +# terraform-aws-route53-alias -Terraform Module that implements "vanity" host names (e.g. `brand.com`) as `ALIAS` records to an another Route53 DNS resource record (e.g. ELB/ALB, or CloudFront Distribution). +Terraform Module to that implements "vanity" host names (e.g. `brand.com`) as `ALIAS` records to another Route53 DNS resource record (e.g. ELB/ALB, S3 Bucket Endpoint or CloudFront Distribution). +Unlike `CNAME` records, the synthetic `ALIAS` record works with zone apexes. ## Usage @@ -8,7 +9,7 @@ This will define a `A` resource record for `www.example.com` as an alias of the ```terraform module "production_www" { - source = "git::https://github.com/cloudposse/tf_vanity.git?ref=master" + source = "git::https://github.com/cloudposse/terraform-aws-route53-alias.git?ref=master" aliases = ["www.example.com.", "static1.cdn.example.com.", "static2.cdn.example.com"] parent_zone_id = "${var.parent_zone_id}" target_dns_name = "${aws_elb.example.dns_name}"