diff --git a/routeros/resource_interface_list.go b/routeros/resource_interface_list.go index 516af725..c6b9af7a 100644 --- a/routeros/resource_interface_list.go +++ b/routeros/resource_interface_list.go @@ -8,26 +8,22 @@ func ResourceInterfaceList() *schema.Resource { resSchema := map[string]*schema.Schema{ MetaResourcePath: PropResourcePath("/interface/list"), MetaId: PropId(Name), - "name": { - Type: schema.TypeString, - Required: true, - }, - "include": { - Type: schema.TypeString, - Optional: true, + + "builtin": { + Type: schema.TypeBool, + Computed: true, }, + "comment": PropCommentRw, + "dynamic": PropDynamicRo, "exclude": { Type: schema.TypeString, Optional: true, }, - "comment": { + "include": { Type: schema.TypeString, Optional: true, }, - "dynamic": { - Type: schema.TypeBool, - Computed: true, - }, + "name": PropNameRw, } return &schema.Resource{