From 41e086c19a7b14f47a19a6713998321ebb4a8ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 23 Aug 2024 00:18:29 +0300 Subject: [PATCH] Add comment support to records --- main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/main.tf b/main.tf index 2a31d49..13684f9 100644 --- a/main.tf +++ b/main.tf @@ -38,6 +38,7 @@ resource "cloudflare_record" "default" { name = each.value.name type = each.value.type value = each.value.value + comment = lookup(each.value, "comment", null) priority = lookup(each.value, "priority", null) proxied = lookup(each.value, "proxied", false) ttl = lookup(each.value, "ttl", 1)