From 29637ffc898d9872e755899be1c6283c24c52fff Mon Sep 17 00:00:00 2001 From: "Sven (AAMOS AI)" Date: Tue, 11 Aug 2026 21:37:56 +0700 Subject: [PATCH] infra: fix ses dkim records output --- infrastructure/terraform/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/outputs.tf b/infrastructure/terraform/outputs.tf index be2d12b..8e1abb1 100644 --- a/infrastructure/terraform/outputs.tf +++ b/infrastructure/terraform/outputs.tf @@ -33,7 +33,7 @@ output "ses_dkim_records" { value = [ for i in range(3) : { name = aws_route53_record.ses_dkim[i].name - value = aws_route53_record.ses_dkim[i].records[0] + value = tolist(aws_route53_record.ses_dkim[i].records)[0] } ] }