Files
terraform-provider-unifi/docs/resources/setting_teleport.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

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.