Skip to content

Commit

Permalink
Add trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
aequitas committed Sep 23, 2024
1 parent e42d922 commit c73458c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource_transip_dns_record.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func resourceDNSRecord() *schema.Resource {
Description: "The type of dns entry. Possbible types are 'A', 'AAAA', 'CAA', 'CNAME', 'MX', 'NS', 'TXT', 'SRV', 'SSHFP', 'TLSA' and 'ALIAS'.",
Required: true,
ValidateFunc: validation.StringInSlice([]string{
"A", "AAAA", "CAA", "CNAME", "MX", "NS", "TXT", "SRV", "SSHFP", "TLSA", "ALIAS"
"A", "AAAA", "CAA", "CNAME", "MX", "NS", "TXT", "SRV", "SSHFP", "TLSA", "ALIAS",
}, false),
},
"content": &schema.Schema{
Expand Down

0 comments on commit c73458c

Please sign in to comment.