Skip to content

Instantly share code, notes, and snippets.

@rumeshbandara
Created January 15, 2023 11:44
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 rumeshbandara/d02cfbdfdbd3048e4c90043ee6769257 to your computer and use it in GitHub Desktop.
Save rumeshbandara/d02cfbdfdbd3048e4c90043ee6769257 to your computer and use it in GitHub Desktop.
Terraform builtin function
resource "aws_route53_record" "www" {
name = "www.example.com"
type = "A"
zone_id = aws_route53_zone.example.zone_id
alias {
name = aws_elb.example.dns_name
zone_id = aws_elb.example.zone_id
evaluate_target_health = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment