-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9566c39
commit 019fa27
Showing
3 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters