Skip to content

Commit

Permalink
chore(release): 1.70.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Nov 24, 2024
1 parent 9566c39 commit 019fa27
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.70.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.69.2...v1.70.0) (2024-11-24)

### Features

* **wave2:** Add new resource `routeros_interface_wireless_connect_list` ([10078df](https://github.com/terraform-routeros/terraform-provider-routeros/commit/10078df6c341d20e2d7e94344bafbff224312828)), closes [#605](https://github.com/terraform-routeros/terraform-provider-routeros/issues/605)

## [1.69.2](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.69.1...v1.69.2) (2024-11-21)

### Bug Fixes
Expand Down
46 changes: 46 additions & 0 deletions docs/resources/interface_wireless_connect_list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# routeros_interface_wireless_connect_list (Resource)


## Example Usage
```terraform
resource "routeros_interface_wireless_connect_list" "test" {
interface = "wlan0"
security_profile = "test-secp"
}
```

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

### Required

- `interface` (String) Name of the interface.

### Optional

- `allow_signal_out_of_range` (String)
- `area_prefix` (String) Rule matches if area value of AP (a proprietary extension) begins with specified value.area value is a proprietary extension.
- `comment` (String)
- `connect` (Boolean) Available options: yes - Connect to access point that matches this rule. no - Do not connect to any access point that matches this rule.
- `disabled` (Boolean)
- `interworking` (String)
- `mac_address` (String) Rule matches only AP with the specified MAC address.
- `security_profile` (String) Name of security profile that is used when connecting to matching access points, If value of this property is none, then security profile specified in the interface configuration will be used. In station mode, rule will match only access points that can support specified security profile. Value none will match access point that supports security profile that is specified in the interface configuration. In access point mode value of this property will not be used to match remote devices.
- `signal_range` (String) Rule matches if signal strength of the access point is within the range. If station establishes connection to access point that is matched by this rule, it will disconnect from that access point when signal strength goes out of the specified range.
- `ssid` (String) Rule matches access points that have this SSID. Empty value matches any SSID. This property has effect only when station mode interface ssid is empty, or when access point mode interface has wds-ignore-ssid=yes.
- `three_gpp` (String)
- `wireless_protocol` (String)

### Read-Only

- `id` (String) The ID of this resource.

## 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 [/interface/wireless/connect-list get [print show-ids]]
terraform import routeros_interface_wireless_connect_list.test *3
#Or you can import a resource using one of its attributes
terraform import routeros_interface_wireless_connect_list.test "name=xxx"
```
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.69.2",
"version": "1.70.0",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit 019fa27

Please sign in to comment.