Skip to content

Instantly share code, notes, and snippets.

@jc00ke
Created March 4, 2019 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jc00ke/9c359735e04d166fb0adab41041e3360 to your computer and use it in GitHub Desktop.
Save jc00ke/9c359735e04d166fb0adab41041e3360 to your computer and use it in GitHub Desktop.
resource "aws_route53_delegation_set" "main" {
reference_name = "main"
}
resource "aws_route53_zone" "relativepath-io" {
name = "relativepath.io"
}
resource "aws_route53_record" "staging" {
zone_id = "${aws_route53_zone.relativepath-io.zone_id}"
name = "www.${aws_route53_zone.relativepath-io.name}"
type = "CNAME"
ttl = "1800"
records = ["relativepath.github.io"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment