Skip to content

Commit

Permalink
fix: Add comment to routeros_wifi resource (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
redcancode committed May 14, 2024
1 parent 09db22b commit 5a2782c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/resources/wifi.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ resource "routeros_wifi" "wifi1" {
* reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
- `arp_timeout` (String) ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, M, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
- `channel` (Map of String) Channel inline settings.
- `comment` (String)
- `configuration` (Map of String) Configuration inline settings.
- `datapath` (Map of String) Datapath inline settings.
- `disable_running_check` (Boolean) An option to set the running property to true if it is not disabled.
Expand Down
1 change: 1 addition & 0 deletions routeros/resource_wifi.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ func ResourceWifi() *schema.Resource {
Description: "Datapath inline settings.",
DiffSuppressFunc: AlwaysPresentNotUserProvided,
},
KeyComment: PropCommentRw,
"default_name": {
Type: schema.TypeString,
Computed: true,
Expand Down

0 comments on commit 5a2782c

Please sign in to comment.