From c1cf16660ed3156d062c7f7b248734e468e9472c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 2 Mar 2025 20:44:34 +0000 Subject: [PATCH] chore(release): 1.77.0 --- CHANGELOG.md | 12 ++++++++++++ docs/resources/capsman_interface.md | 2 +- docs/resources/container_mounts.md | 5 ++--- docs/resources/interface_bonding.md | 2 +- docs/resources/interface_bridge.md | 2 +- docs/resources/interface_eoip.md | 2 +- docs/resources/interface_ethernet.md | 2 +- docs/resources/interface_macvlan.md | 2 +- docs/resources/interface_vlan.md | 2 +- docs/resources/interface_vrrp.md | 2 +- docs/resources/interface_vxlan.md | 2 +- docs/resources/interface_w60g.md | 2 +- docs/resources/interface_w60g_station.md | 2 +- docs/resources/system_user_sshkeys.md | 14 +++++++------- docs/resources/wifi.md | 2 +- docs/resources/zerotier_interface.md | 2 +- package.json | 2 +- 17 files changed, 35 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdba6c51..6d38b569 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [1.77.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.76.7...v1.77.0) (2025-03-02) + +### Features + +* **system:** Add user ssh-keys resource ([7c15569](https://github.com/terraform-routeros/terraform-provider-routeros/commit/7c15569b364162a1b1f37a7212ae29aa73a5c3d3)) + +### Bug Fixes + +* **container:** Importing containers and container mounts (inconsistency and force recreate) ([af2585a](https://github.com/terraform-routeros/terraform-provider-routeros/commit/af2585a427479967aaf183980667f656455149ef)), closes [#652](https://github.com/terraform-routeros/terraform-provider-routeros/issues/652) +* **dhcp-server:** 'Bad Request', details: 'unknown parameter src-address' ([3eb7c44](https://github.com/terraform-routeros/terraform-provider-routeros/commit/3eb7c44b07576a09bf4a164b7c46909c237c8dc1)), closes [#679](https://github.com/terraform-routeros/terraform-provider-routeros/issues/679) +* minutes short name is lower m ([0379a1a](https://github.com/terraform-routeros/terraform-provider-routeros/commit/0379a1ac2c491683d0401ef1ac8d4241807c178f)) + ## [1.76.7](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.76.6...v1.76.7) (2025-02-28) ### Bug Fixes diff --git a/docs/resources/capsman_interface.md b/docs/resources/capsman_interface.md index 33bef199..5cccda0d 100644 --- a/docs/resources/capsman_interface.md +++ b/docs/resources/capsman_interface.md @@ -27,7 +27,7 @@ resource "routeros_capsman_interface" "cap1" { ### Optional -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `channel` (Map of String) Channel inline settings. - `comment` (String) - `configuration` (Map of String) Configuration inline settings. diff --git a/docs/resources/container_mounts.md b/docs/resources/container_mounts.md index 4275f614..82d05398 100644 --- a/docs/resources/container_mounts.md +++ b/docs/resources/container_mounts.md @@ -29,7 +29,6 @@ resource "routeros_container_mounts" "caddyfile" { ## Import Import is supported using the following syntax: ```shell -#The ID can be found via API or the terminal -#The command for the terminal is -> :put [/container/mounts get [print show-ids]] -terraform import routeros_container_mounts.caddyfile "*1" +# Import with the name of the container mount in case of the example use Caddyfile +terraform import routeros_container_mounts.caddyfile Caddyfile ``` diff --git a/docs/resources/interface_bonding.md b/docs/resources/interface_bonding.md index 4f01f0b8..74b6e82a 100644 --- a/docs/resources/interface_bonding.md +++ b/docs/resources/interface_bonding.md @@ -22,7 +22,7 @@ resource "routeros_interface_bonding" "test" { - `arp` (String) Address Resolution Protocol for the interface. disabled - the interface will not use ARP enabled - the interface will use ARP proxy-arp - the interface will use the ARP proxy feature reply-only -the interface will only reply to requests originated from matching IPaddress/MAC address combinations which are entered as static entries inthe '/ip arp' table. No dynamic entries will be automatically stored inthe '/ip arp' table. Therefore for communications to be successful, avalid static entry must already exist. - `arp_interval` (String) Time in milliseconds defines how often to monitor ARP requests. - `arp_ip_targets` (String) IP target address which will be monitored if link-monitoring is set to arp. You can specify multiple IP addresses, separated by a comma. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `comment` (String) - `disabled` (Boolean) - `down_delay` (String) If a link failure has been detected, the bonding interface is disabled for a down-delay time. The value should be a multiple of mii-interval, otherwise, it will be rounded down to the nearest value. This property only has an effect when link-monitoring is set to mii. diff --git a/docs/resources/interface_bridge.md b/docs/resources/interface_bridge.md index 7ff82651..ead09326 100644 --- a/docs/resources/interface_bridge.md +++ b/docs/resources/interface_bridge.md @@ -29,7 +29,7 @@ resource "routeros_interface_bridge" "bridge" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `auto_mac` (Boolean) Automatically select one MAC address of bridge ports as a bridge MAC address, bridge MAC will be chosen from the first added bridge port. After a device reboot, the bridge MAC can change depending on the port-number. - `comment` (String) - `dhcp_snooping` (Boolean) diff --git a/docs/resources/interface_eoip.md b/docs/resources/interface_eoip.md index 93c7f76c..2e606a74 100644 --- a/docs/resources/interface_eoip.md +++ b/docs/resources/interface_eoip.md @@ -29,7 +29,7 @@ resource "routeros_interface_eoip" "eoip_tunnel1" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `clamp_tcp_mss` (Boolean) Controls whether to change MSS size for received TCP SYN packets. When enabled, a router will change the MSS size for received TCP SYN packets if the current MSS size exceeds the tunnel interface MTU (taking into account the TCP/IP overhead). The received encapsulated packet will still contain the original MSS, and only after decapsulation the MSS is changed. - `comment` (String) - `disabled` (Boolean) diff --git a/docs/resources/interface_ethernet.md b/docs/resources/interface_ethernet.md index 022c6beb..a2596a6f 100644 --- a/docs/resources/interface_ethernet.md +++ b/docs/resources/interface_ethernet.md @@ -29,7 +29,7 @@ resource "routeros_interface_ethernet" "test" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `auto_negotiation` (Boolean) When enabled, the interface "advertises" its maximum capabilities to achieve the best connection possible. Note1: Auto-negotiation should not be disabled on one end only, otherwise Ethernet Interfaces may not work properly. Note2: Gigabit Ethernet and NBASE-T Ethernet links cannot work with auto-negotiation disabled. diff --git a/docs/resources/interface_macvlan.md b/docs/resources/interface_macvlan.md index b5a2ac09..4cb0ff2c 100644 --- a/docs/resources/interface_macvlan.md +++ b/docs/resources/interface_macvlan.md @@ -28,7 +28,7 @@ resource "routeros_interface_macvlan" "test" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `comment` (String) - `disabled` (Boolean) - `loop_protect` (String) diff --git a/docs/resources/interface_vlan.md b/docs/resources/interface_vlan.md index cbe995b2..4806c635 100644 --- a/docs/resources/interface_vlan.md +++ b/docs/resources/interface_vlan.md @@ -29,7 +29,7 @@ resource "routeros_interface_vlan" "interface_vlan" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `comment` (String) - `disabled` (Boolean) - `loop_protect` (String) diff --git a/docs/resources/interface_vrrp.md b/docs/resources/interface_vrrp.md index ac59f1a9..538d0aef 100644 --- a/docs/resources/interface_vrrp.md +++ b/docs/resources/interface_vrrp.md @@ -27,7 +27,7 @@ resource "routeros_interface_vrrp" "interface_vrrp" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `authentication` (String) Authentication method to use for VRRP advertisement packets. - `comment` (String) - `disabled` (Boolean) diff --git a/docs/resources/interface_vxlan.md b/docs/resources/interface_vxlan.md index 707ce74c..76634857 100644 --- a/docs/resources/interface_vxlan.md +++ b/docs/resources/interface_vxlan.md @@ -25,7 +25,7 @@ resource "routeros_interface_vxlan" "test" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `comment` (String) - `disabled` (Boolean) - `dont_fragment` (String) The Don't Fragment (DF) flag controls whether a packet can be broken into smaller packets, called fragments, before being sent over a network. When configuring VXLAN, this setting determines the presence of the DF flag on the outer IPv4 header and can control packet fragmentation if the encapsulated packet exceeds the outgoing interface MTU. This setting has three options: diff --git a/docs/resources/interface_w60g.md b/docs/resources/interface_w60g.md index d577294f..8b1061c5 100644 --- a/docs/resources/interface_w60g.md +++ b/docs/resources/interface_w60g.md @@ -27,7 +27,7 @@ resource "routeros_interface_w60g" "test" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `comment` (String) - `disabled` (Boolean) - `frequency` (String) Frequency used in communication (Only active on bridge device). diff --git a/docs/resources/interface_w60g_station.md b/docs/resources/interface_w60g_station.md index 64bc9601..ae1ac152 100644 --- a/docs/resources/interface_w60g_station.md +++ b/docs/resources/interface_w60g_station.md @@ -28,7 +28,7 @@ resource "routeros_interface_w60g_station" "test" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `disabled` (Boolean) - `mtu` (String) Layer3 Maximum transmission unit ('auto', 0 .. 65535) - `put_in_bridge` (String) Add station device interface to specific bridge. diff --git a/docs/resources/system_user_sshkeys.md b/docs/resources/system_user_sshkeys.md index 6ee747e1..cffae25c 100644 --- a/docs/resources/system_user_sshkeys.md +++ b/docs/resources/system_user_sshkeys.md @@ -1,9 +1,9 @@ -# routeros_system_user_keys (Resource) +# routeros_system_user_sshkeys (Resource) ## Example Usage ```terraform -resource "routeros_system_user_keys" "test" { +resource "routeros_system_user_sshkeys" "test" { user = "test-user-1" key = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCyJ1EvW98veNVzR3VamNgmu0xOd/JK9YNvP/pa4WC5eT90UbX4TN7dKEK/x2FCwnnG9u0FQhzG2qa/Cg8meUvlfydn6uxc0/WCeXTKSu6sT63noPO6m4fHY7gu3Zt+fOc/WYGch9sBeWjZlCS1mA2lajkWhM3J8TFWCFm2Zk4/S3s5mt6VLbwpQnH2LhE41+azzDEVhcR6i3FfdgOF/J+j2fYYHJsBEKoQA5zUac2zWmz7X4Rv/g11ZBRqdMpHSD58o5F9lBb13antu5GcEs5RXpXp08OyXuRV9qhFpDBC8DOMALSOgT3vnu8uJLgo8QIulERofj/cRXbLCsmvMbpioBuGFXWx3ha4Ntd6z07kUh2KVbaIQLd/629UHNvgIhoBLlREJ8E5vllsX+jh8hRITHcCiEwXcDO+gG3hvJt0+jm8S8SObE/IHk8VuwWdhIsSku5vd+wVlxm8VeJzjc0cjdIiytvsq8VpLudKEUiqR0f2tHcoq8H+xcJv3Ycu1i8=" comment = "Test User" @@ -15,8 +15,8 @@ resource "routeros_system_user_keys" "test" { ### Required -- `user` (String) username to which the SSH key is assigned -- `key` (String) SSH public key. +- `key` (String, Sensitive) key +- `user` (String) username to which the SSH key is assigned. ### Optional @@ -24,11 +24,11 @@ resource "routeros_system_user_keys" "test" { ### Read-Only +- `bits` (Number) key length - `id` (String) The ID of this resource. +- `key_owner` (String) SSH key owner +- `key_type` (String) key type - `rsa` (Boolean) key type is rsa -- `bits` (Number) key length -- `key-type` (String) SSH key type -- `key-owner` (String) SSH key owner ## Import Import is supported using the following syntax: diff --git a/docs/resources/wifi.md b/docs/resources/wifi.md index ee8e033e..31686da9 100644 --- a/docs/resources/wifi.md +++ b/docs/resources/wifi.md @@ -32,7 +32,7 @@ resource "routeros_wifi" "wifi1" { * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `channel` (Map of String) Channel inline settings. - `comment` (String) - `configuration` (Map of String) Configuration inline settings. diff --git a/docs/resources/zerotier_interface.md b/docs/resources/zerotier_interface.md index e47ec6af..421761d1 100644 --- a/docs/resources/zerotier_interface.md +++ b/docs/resources/zerotier_interface.md @@ -50,7 +50,7 @@ resource "routeros_zerotier_interface" "zerotier1" { - `allow_default` (Boolean) An option to override the default route. - `allow_global` (Boolean) An option to allow overlapping public IP space by the ZeroTier routes. . - `allow_managed` (Boolean) An option to allow assignment of managed IPs. -- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `M`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. +- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix `ms`, `s`, `m`, `h`, `d` for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used. - `comment` (String) - `disable_running_check` (Boolean) An option to force the `running` property to true. - `disabled` (Boolean) diff --git a/package.json b/package.json index 060f6d45..2ec55c1a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "terraform-provider-routeros", - "version": "1.76.7", + "version": "1.77.0", "repository": { "type": "git", "url": "https://github.com/terraform-routeros/terraform-provider-routeros"