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] } ] }