Skip to content

Instantly share code, notes, and snippets.

@jc00ke
Created March 2, 2025 17:53
Show Gist options
  • Save jc00ke/fa0f456dc8c0d570f7f1195836f41eb2 to your computer and use it in GitHub Desktop.
Save jc00ke/fa0f456dc8c0d570f7f1195836f41eb2 to your computer and use it in GitHub Desktop.
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