diff --git a/CHANGELOG.md b/CHANGELOG.md index f8607ac5..d6a77c8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.57.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.57.0...v1.57.1) (2024-07-30) + + +### Bug Fixes + +* **ospf_interface_template:** RouterOS 7.x & OSPF Interface Template Auth Key ([995ba46](https://github.com/terraform-routeros/terraform-provider-routeros/commit/995ba46e8d8f8fc11c9d47a300f36879876c285f)), closes [#510](https://github.com/terraform-routeros/terraform-provider-routeros/issues/510) + ## [1.57.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.56.0...v1.57.0) (2024-07-23) diff --git a/docs/resources/routing_ospf_interface_template.md b/docs/resources/routing_ospf_interface_template.md index 79029333..9e5e89f9 100644 --- a/docs/resources/routing_ospf_interface_template.md +++ b/docs/resources/routing_ospf_interface_template.md @@ -28,7 +28,8 @@ resource "routeros_routing_ospf_interface_template" "test_routing_ospf_interface - `auth` (String) Specifies authentication method for OSPF protocol messages. - `auth_id` (Number) The key id is used to calculate message digest (used when MD5 or SHA authentication is enabled). -- `authentication_key` (String, Sensitive) The authentication key to be used, should match on all the neighbors of the network segment. +- `auth_key` (String, Sensitive) The authentication key to be used, should match on all the neighbors of the network segment (available since RouterOS 7.x). +- `authentication_key` (String, Sensitive) The authentication key to be used, should match on all the neighbors of the network segment (for versions before RouterOS 7.x). - `comment` (String) - `cost` (Number) Interface cost expressed as link state metric. - `dead_interval` (String) Specifies the interval after which a neighbor is declared dead. diff --git a/package.json b/package.json index 73231aaf..a9df2746 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "terraform-provider-routeros", - "version": "1.57.0", + "version": "1.57.1", "repository": { "type": "git", "url": "https://github.com/terraform-routeros/terraform-provider-routeros"