* docs: add examples and recreate TF documentation * update readme * add information about experimental support of firewall zones
1.4 KiB
1.4 KiB
page_title, subcategory, description
| page_title | subcategory | description |
|---|---|---|
| unifi_setting_teleport Resource - terraform-provider-unifi | Manages Teleport settings for a UniFi site. Teleport is a secure remote access technology that allows authorized users to connect to UniFi devices from anywhere. |
unifi_setting_teleport (Resource)
Manages Teleport settings for a UniFi site. Teleport is a secure remote access technology that allows authorized users to connect to UniFi devices from anywhere.
Example Usage
resource "unifi_setting_teleport" "example" {
# Enable Teleport remote access functionality
enabled = true
# Optional subnet configuration for Teleport
# Specify a CIDR notation subnet for Teleport to use
subnet = "192.168.100.0/24"
# Specify the site (optional, defaults to site configured in provider, otherwise "default")
# site = "default"
}
Schema
Required
enabled(Boolean) Whether Teleport is enabled.
Optional
site(String) The name of the UniFi site where this resource should be applied. If not specified, the default site will be used.subnet(String) The subnet CIDR for Teleport (e.g.,192.168.1.0/24). Can be empty but must be set explicitly.
Read-Only
id(String) The unique identifier of this resource.