Skip to content

Commit

Permalink
chore(release): 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed May 16, 2023
1 parent 4696f0c commit c7d9264
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.8.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.7.2...v1.8.0) (2023-05-16)


### Features

* Support bridge settings ([0bea447](https://github.com/terraform-routeros/terraform-provider-routeros/commit/0bea447ceed39579b565cd9041fdb98769e21f46)), closes [#209](https://github.com/terraform-routeros/terraform-provider-routeros/issues/209)

## [1.7.2](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.7.1...v1.7.2) (2023-05-15)


Expand Down
34 changes: 34 additions & 0 deletions docs/resources/interface_bridge_settings.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# routeros_interface_bridge_settings (Resource)


## Example Usage
```terraform
resource "routeros_interface_bridge_settings" "settings" {
use_ip_firewall = true
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Optional

- `allow_fast_path` (Boolean) Whether to enable a bridge FastPath globally.
- `use_ip_firewall` (Boolean) Force bridged traffic to also be processed by prerouting, forward and postrouting sections of IP routing ( Packet Flow). This does not apply to routed traffic. This property is required in case you want to assign Simple Queues or global Queue Tree to traffic in a bridge. Property use-ip-firewall-for-vlan is required in case bridge vlan-filtering is used.
- `use_ip_firewall_for_pppoe` (Boolean) Send bridged un-encrypted PPPoE traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to PPPoE traffic in a bridge.
- `use_ip_firewall_for_vlan` (Boolean) Send bridged VLAN traffic to also be processed by IP/Firewall. This property only has effect when use-ip-firewall is set to yes. This property is required in case you want to assign Simple Queues or global Queue Tree to VLAN traffic in a bridge.

### Read-Only

- `bridge_fast_forward_bytes` (Number) Shows byte count forwarded by Bridge Fast Forward.
- `bridge_fast_forward_packets` (Number) Shows packet count forwarded by Bridge Fast Forward.
- `bridge_fast_path_active` (Boolean) Shows whether a bridge FastPath is active globally, FastPatch status per bridge interface is not displayed.
- `bridge_fast_path_bytes` (Number) Shows byte count forwarded by Bridge Fast Path.
- `bridge_fast_path_packets` (Number) Shows packet count forwarded by Bridge FastPath.
- `id` (String) The ID of this resource.

## Import
Import is supported using the following syntax:
```shell
terraform import routeros_interface_bridge_settings.settings .
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terraform-provider-routeros",
"version": "1.7.2",
"version": "1.8.0",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit c7d9264

Please sign in to comment.