Files
terraform-provider-unifi/docs/resources/setting_auto_speedtest.md
Mateusz Filipowicz b9284f7758 docs: improve documentation for 1.0.0 release (#75)
* docs: add examples and recreate TF documentation

* update readme

* add information about experimental support of firewall zones
2025-03-22 19:13:16 +01:00

47 lines
1.7 KiB
Markdown

---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "unifi_setting_auto_speedtest Resource - terraform-provider-unifi"
subcategory: ""
description: |-
The unifi_setting_auto_speedtest resource manages the automatic speedtest settings in the UniFi controller.Automatic speedtests can be scheduled to run at regular intervals to monitor the network performance.
NOTE: Automatic speedtests where not verified and tested on all UniFi controller versions due to limitations of controller used in acceptance testing.
---
# unifi_setting_auto_speedtest (Resource)
The `unifi_setting_auto_speedtest` resource manages the automatic speedtest settings in the UniFi controller.Automatic speedtests can be scheduled to run at regular intervals to monitor the network performance.
**NOTE:** Automatic speedtests where not verified and tested on all UniFi controller versions due to limitations of controller used in acceptance testing.
## Example Usage
```terraform
resource "unifi_setting_auto_speedtest" "example" {
# Enable automatic speedtest functionality
enabled = true
# Schedule for running speedtests using cron syntax
# This example runs at midnight every day
cron = "0 0 * * *"
# Specify the site (optional, defaults to site configured in provider, otherwise "default")
# site = "default"
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required
- `enabled` (Boolean) Whether the automatic speedtest is enabled.
### Optional
- `cron` (String) Cron expression defining the schedule for automatic speedtests.
- `site` (String) The name of the UniFi site where this resource should be applied. If not specified, the default site will be used.
### Read-Only
- `id` (String) The unique identifier of this resource.