Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created April 1, 2019 05:33
Show Gist options
  • Select an option

  • Save 100daysofdevops/17100a501c449b623948877767a35528 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/17100a501c449b623948877767a35528 to your computer and use it in GitHub Desktop.
resource "aws_route53_zone" "primary" {
name = "example.com"
}
resource "aws_route53_record" "www" {
zone_id = "${aws_route53_zone.primary.zone_id}"
name = "www.example.com"
type = "A"
ttl = "300"
records = [“${var.ec2_ip}”]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment