Skip to content

Commit

Permalink
Add comment support to records
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc authored Aug 22, 2024
1 parent 3073cc3 commit 41e086c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 41e086c

Please sign in to comment.