Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.

Commit ee116bb

Browse files
committed
feat: allow multiple records for dns entries
1 parent 7418087 commit ee116bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • aws/terraform/networking-contentdelivery/route53-dns-record

aws/terraform/networking-contentdelivery/route53-dns-record/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ resource "aws_route53_record" "record" {
88
name = "${var.sub}.${data.aws_route53_zone.zone.name}"
99
type = var.type
1010
ttl = parseint(var.ttl, 10)
11-
records = [var.record]
11+
records = split(",", var.record)
1212
}

0 commit comments

Comments
 (0)