Add minimum_data_rate_2g and minimum_data_rate_5g fields to unifi_wlan (#159)

* Add minimum_data_rate_2g and minimum_data_rate_5g fields to unifi_wlan

* Update implementation to match api/sdk types

* Fix disabled state

Co-authored-by: Paul Tyng <paul@paultyng.net>
This commit is contained in:
Kurt McAlpine
2021-09-11 14:16:21 +12:00
committed by GitHub
parent ede214c5c5
commit a0b5f773d5
4 changed files with 146 additions and 5 deletions

View File

@@ -67,6 +67,8 @@ resource "unifi_wlan" "wifi" {
- **mac_filter_enabled** (Boolean) Indicates whether or not the MAC filter is turned of for the network.
- **mac_filter_list** (Set of String) List of MAC addresses to filter (only valid if `mac_filter_enabled` is `true`).
- **mac_filter_policy** (String) MAC address filter policy (only valid if `mac_filter_enabled` is `true`). Defaults to `deny`.
- **minimum_data_rate_2g_kbps** (Number) Set minimum data rate control for 2G devices, in Kbps. Use `0` to disable minimum data rates. Valid values are: `1000`, `2000`, `5500`, `6000`, `9000`, `11000`, `12000`, `18000`, `24000`, `36000`, `48000`, and `54000`.
- **minimum_data_rate_5g_kbps** (Number) Set minimum data rate control for 5G devices, in Kbps. Use `0` to disable minimum data rates. Valid values are: `6000`, `9000`, `12000`, `18000`, `24000`, `36000`, `48000`, and `54000`.
- **multicast_enhance** (Boolean) Indicates whether or not Multicast Enhance is turned of for the network.
- **network_id** (String) ID of the network for this SSID
- **no2ghz_oui** (Boolean) Connect high performance clients to 5 GHz only Defaults to `true`.