From 499012ace80c982be0b1eb0ba3418545d2f41722 Mon Sep 17 00:00:00 2001 From: Tom Goodsell Date: Sun, 15 Dec 2024 15:28:58 -0600 Subject: [PATCH] refactor: consistent whitespace --- netbox/resource_netbox_asn.go | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/resource_netbox_asn.go b/netbox/resource_netbox_asn.go index 27075c5c..b1a16f22 100644 --- a/netbox/resource_netbox_asn.go +++ b/netbox/resource_netbox_asn.go @@ -117,6 +117,7 @@ func resourceNetboxAsnUpdate(d *schema.ResourceData, m interface{}) error { rir := int64(d.Get("rir_id").(int)) data.Rir = &rir + data.Description = d.Get("description").(string) data.Comments = d.Get("comments").(string) data.Tags, _ = getNestedTagListFromResourceDataSet(api, d.Get(tagsKey))