diff --git a/CHANGELOG.md b/CHANGELOG.md index a892ad31..fbc393cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.69.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.69.0...v1.69.1) (2024-11-18) + +### Bug Fixes + +* **ospf:** Change the “network” attribute ([f057f18](https://github.com/terraform-routeros/terraform-provider-routeros/commit/f057f184608e9de9c08e2f5b773e0ed4f4f740af)), closes [#598](https://github.com/terraform-routeros/terraform-provider-routeros/issues/598) + ## [1.69.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.68.0...v1.69.0) (2024-11-14) ### Features diff --git a/docs/resources/routing_ospf_interface_template.md b/docs/resources/routing_ospf_interface_template.md index 86f342bd..2c3d65ff 100644 --- a/docs/resources/routing_ospf_interface_template.md +++ b/docs/resources/routing_ospf_interface_template.md @@ -37,7 +37,7 @@ resource "routeros_routing_ospf_interface_template" "test_routing_ospf_interface - `hello_interval` (String) The interval between HELLO packets that the router sends out this interface. - `instance_id` (Number) Interface cost expressed as link state metric. - `interfaces` (Set of String) Interfaces to match. -- `network` (String) The network prefix associated with the area. +- `networks` (Set of String) The network prefixes associated with the area. - `passive` (Boolean) If enabled, then do not send or receive OSPF traffic on the matching interfaces. The correct value of this attribute may not be displayed in Winbox. Please check the parameters in the console! - `prefix_list` (String) Name of the address list containing networks that should be advertised to the v3 interface. - `priority` (Number) Router's priority. Used to determine the designated router in a broadcast network. diff --git a/package.json b/package.json index caf535c7..eb667014 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "terraform-provider-routeros", - "version": "1.69.0", + "version": "1.69.1", "repository": { "type": "git", "url": "https://github.com/terraform-routeros/terraform-provider-routeros"