Created
March 2, 2025 17:53
-
-
Save jc00ke/fa0f456dc8c0d570f7f1195836f41eb2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "aws_route53_record" "sending_records" { | |
zone_id = var.aws_zone_id_jesse | |
for_each = { | |
for r in mailgun_domain.jesse.sending_records_set : | |
"${r.name}__${r.record_type}" => r | |
} | |
type = each.value.record_type | |
records = [ | |
join( | |
local.delimiter, flatten( | |
[for chunk in chunklist(split("", each.value.value), local.chunk_size) : | |
join("", chunk)])) | |
] | |
ttl = 60 | |
name = each.value.name | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment