Skip to content

Commit

Permalink
Merge pull request #126 from GNewbury1/vaerh/issue121
Browse files Browse the repository at this point in the history
fix(#121) "builtin" not found.
  • Loading branch information
vaerh authored Feb 22, 2023
2 parents 6321057 + 3af7b0f commit 0daa891
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions routeros/resource_interface_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit 0daa891

Please sign in to comment.