Skip to content

Commit

Permalink
chore(release): 1.59.1
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Aug 7, 2024
1 parent 4f342fb commit 184b24b
Show file tree
Hide file tree
Showing 46 changed files with 321 additions and 458 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [1.59.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.59.0...v1.59.1) (2024-08-07)


### Bug Fixes

* **bridge_port:** Fix the `priority` attribute type. ([4f342fb](https://github.com/terraform-routeros/terraform-provider-routeros/commit/4f342fb0fcedce97f0dbff806f0c60a6ed072b8b)), closes [#528](https://github.com/terraform-routeros/terraform-provider-routeros/issues/528)
* **firewall_raw:** "no track" action in routeros_ip_firewall_raw needs tweaking ([9d46a55](https://github.com/terraform-routeros/terraform-provider-routeros/commit/9d46a5503163b60534d63f414ddfd1b1a50ea631)), closes [#529](https://github.com/terraform-routeros/terraform-provider-routeros/issues/529)
* **wireguard_peer:** Need new filed 'is-responder' in resource 'routeros_interface_wireguard_peer' ([a31a394](https://github.com/terraform-routeros/terraform-provider-routeros/commit/a31a394e3abd8bcab3af06d6ab35d4b4f0abc89a)), closes [#530](https://github.com/terraform-routeros/terraform-provider-routeros/issues/530)

## [1.59.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.58.2...v1.59.0) (2024-08-05)


Expand Down
16 changes: 8 additions & 8 deletions docs/data-sources/ip_firewall.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This datasource contains all supported firewall resources:
data "routeros_ip_firewall" "fw" {
rules {
filter = {
chain = "input"
chain = "input"
comment = "rule_2"
}
}
Expand All @@ -25,19 +25,19 @@ data "routeros_ip_firewall" "fw" {
}
output "rules" {
value = [for value in data.routeros_ip_firewall.fw.rules: [value.id, value.src_address]]
value = [for value in data.routeros_ip_firewall.fw.rules : [value.id, value.src_address]]
}
output "nat" {
value = [for value in data.routeros_ip_firewall.fw.nat: [value.id, value.comment]]
value = [for value in data.routeros_ip_firewall.fw.nat : [value.id, value.comment]]
}
resource "routeros_ip_firewall" "rule_3" {
action = "accept"
chain = "input"
comment = "rule_3"
src_address = "192.168.0.5"
place_before = "${data.routeros_ip_firewall_filter.fw.rules[0].id}"
action = "accept"
chain = "input"
comment = "rule_3"
src_address = "192.168.0.5"
place_before = data.routeros_ip_firewall_filter.fw.rules[0].id
}
```

Expand Down
53 changes: 0 additions & 53 deletions docs/guides/easy_import.md

This file was deleted.

94 changes: 0 additions & 94 deletions docs/guides/install_package.md

This file was deleted.

4 changes: 2 additions & 2 deletions docs/resources/capsman_aaa.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
## Example Usage
```terraform
resource "routeros_capsman_aaa" "test_3a" {
called_format = "ssid"
mac_mode = "as-username-and-password"
called_format = "ssid"
mac_mode = "as-username-and-password"
}
```

Expand Down
10 changes: 5 additions & 5 deletions docs/resources/capsman_access_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
## Example Usage
```terraform
resource "routeros_capsman_datapath" "test_rule" {
comment = "Catch-all"
interface = "cap1"
signal_range = "-120..-85"
allow_signal_out_of_range = "20s"
action = "reject"
comment = "Catch-all"
interface = "cap1"
signal_range = "-120..-85"
allow_signal_out_of_range = "20s"
action = "reject"
}
```

Expand Down
22 changes: 11 additions & 11 deletions docs/resources/capsman_channel.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
## Example Usage
```terraform
resource "routeros_capsman_channel" "test_channel" {
name = "test_channel"
comment = "test_channel"
band = "2ghz-b/g/n"
control_channel_width = "10mhz"
extension_channel = "eCee"
frequency = [2412]
reselect_interval = "1h"
save_selected = true
secondary_frequency = ["disabled"]
skip_dfs_channels = true
tx_power = 20
name = "test_channel"
comment = "test_channel"
band = "2ghz-b/g/n"
control_channel_width = "10mhz"
extension_channel = "eCee"
frequency = [2412]
reselect_interval = "1h"
save_selected = true
secondary_frequency = ["disabled"]
skip_dfs_channels = true
tx_power = 20
}
```

Expand Down
Loading

0 comments on commit 184b24b

Please sign in to comment.