* docs: add examples and recreate TF documentation * update readme * add information about experimental support of firewall zones
39 lines
963 B
Markdown
39 lines
963 B
Markdown
---
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
page_title: "unifi_setting_locale Resource - terraform-provider-unifi"
|
|
subcategory: ""
|
|
description: |-
|
|
Manages locale settings for a UniFi site.
|
|
---
|
|
|
|
# unifi_setting_locale (Resource)
|
|
|
|
Manages locale settings for a UniFi site.
|
|
|
|
## Example Usage
|
|
|
|
```terraform
|
|
resource "unifi_setting_locale" "example" {
|
|
# Set the timezone using IANA timezone identifier format
|
|
timezone = "America/New_York"
|
|
|
|
# Specify the site (optional, defaults to site configured in provider, otherwise "default")
|
|
# site = "default"
|
|
}
|
|
```
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
## Schema
|
|
|
|
### Required
|
|
|
|
- `timezone` (String) Timezone for the UniFi controller, e.g., `America/Los_Angeles`
|
|
|
|
### Optional
|
|
|
|
- `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.
|