moto/other_langs/terraform/route53/route53.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
509 B
Terraform
Raw Normal View History

resource "aws_route53_zone" "test" {
name = "test.co"
}
resource "aws_route53_record" "svc_healtchecked_a_record" {
zone_id = aws_route53_zone.test.id
name = "svc-healthchecked.${aws_route53_zone.test.name}"
type = "A"
ttl = 60
set_identifier = "repl-0"
multivalue_answer_routing_policy = true
records = ["172.31.0.100", "172.31.0.101"]
}