Skip to content

Instantly share code, notes, and snippets.

@nodefortytwo
Created April 15, 2016 16:03
Show Gist options
  • Save nodefortytwo/9441af2a48bfa0f42de6c05e36a109b6 to your computer and use it in GitHub Desktop.
Save nodefortytwo/9441af2a48bfa0f42de6c05e36a109b6 to your computer and use it in GitHub Desktop.
resource "aws_route53_record" "udp_address" {
zone_id = "foo"
name = "udp.${var.domain}"
type = "A"
records = ["${aws_elb.webheads.instances.0.public_ip}"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment