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))