Skip to content

Commit

Permalink
fix(ospf_interface_template): RouterOS 7.x & OSPF Interface Template …
Browse files Browse the repository at this point in the history
…Auth Key

Fixes #510
  • Loading branch information
vaerh committed Jul 30, 2024
1 parent 7e1ef82 commit 995ba46
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions routeros/resource_routing_ospf_interface_template.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,18 @@ func ResourceRoutingOspfInterfaceTemplate() *schema.Resource {
ValidateFunc: validation.IntBetween(0, 255),
},
"authentication_key": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Description: "The authentication key to be used, should match on all the neighbors of the network segment.",
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Description: "The authentication key to be used, should match on all the neighbors of the network segment " +
"(for versions before RouterOS 7.x).",
},
"auth_key": {
Type: schema.TypeString,
Optional: true,
Sensitive: true,
Description: "The authentication key to be used, should match on all the neighbors of the network segment " +
"(available since RouterOS 7.x).",
},
KeyComment: PropCommentRw,
"cost": {
Expand Down

0 comments on commit 995ba46

Please sign in to comment.