diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fd2c2a0..2eda4437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.25.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.25.0...v1.25.1) (2023-11-27) + + +### Bug Fixes + +* Add missing schema fields ([#303](https://github.com/terraform-routeros/terraform-provider-routeros/issues/303)) ([bd245b9](https://github.com/terraform-routeros/terraform-provider-routeros/commit/bd245b91820bc3920b38cdc984c7332c36ce03d0)) +* **no-release:** Fix incorrect addition of skip fields ([9ee6d70](https://github.com/terraform-routeros/terraform-provider-routeros/commit/9ee6d70170d4c290609742ae27bac48228edaf7c)) + ## [1.25.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.24.0...v1.25.0) (2023-11-15) diff --git a/docs/resources/interface_ethernet.md b/docs/resources/interface_ethernet.md index bf21e7bf..7fabc45a 100644 --- a/docs/resources/interface_ethernet.md +++ b/docs/resources/interface_ethernet.md @@ -51,8 +51,14 @@ resource "routeros_interface_ethernet" "test" { - `mac_address` (String) Media Access Control number of an interface. - `mdix_enable` (Boolean) Whether the MDI/X auto cross over cable correction feature is enabled for the port (Hardware specific, e.g. ether1 on RB500 can be set to yes/no. Fixed to 'yes' on other hardware.) - `mtu` (Number) Layer3 Maximum transmission unit +- `poe_lldp_enabled` (Boolean) An option that enables LLDP for managing devices. - `poe_out` (String) PoE settings: (https://wiki.mikrotik.com/wiki/Manual:PoE-Out) - `poe_priority` (Number) PoE settings: (https://wiki.mikrotik.com/wiki/Manual:PoE-Out) +- `poe_voltage` (String) An option that allows us to manually control the voltage outputs on the PoE port. +- `power_cycle_interval` (String) An options that disables PoE-Out power for 5s between the specified intervals. +- `power_cycle_ping_address` (String) An address to monitor. +- `power_cycle_ping_enabled` (Boolean) An option that enables ping watchdog of power cycles on the port if a host does not respond to ICMP or MAC-Telnet packets. +- `power_cycle_ping_timeout` (String) If the host does not respond over the specified period, the PoE-Out port is switched off for 5s. - `rx_flow_control` (String) When set to on, the port will process received pause frames and suspend transmission if required. auto is the same as on except when auto-negotiation=yes flow control status is resolved by taking into account what other end advertises. - `sfp_rate_select` (String) Allows to control rate select pin for SFP ports. Values: high | low diff --git a/docs/resources/ip_dns.md b/docs/resources/ip_dns.md index 95a9de26..018e1b04 100644 --- a/docs/resources/ip_dns.md +++ b/docs/resources/ip_dns.md @@ -14,6 +14,7 @@ resource "routeros_dns" "dns-server" { ### Optional +- `address_list_extra_time` (String) - `allow_remote_requests` (Boolean) Specifies whether to allow network requests. - `cache_max_ttl` (String) Maximum time-to-live for cache records. In other words, cache records will expire unconditionally after cache-max-ttl time. Shorter TTL received from DNS servers are respected. *Default: 1w* - `cache_size` (Number) Specifies the size of DNS cache in KiB (64..4294967295). *Default: 2048* diff --git a/package.json b/package.json index 7c0da4fd..51b8a5fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "terraform-provider-routeros", - "version": "1.25.0", + "version": "1.25.1", "repository": { "type": "git", "url": "https://github.com/terraform-routeros/terraform-provider-routeros"