* feat: initialize Terraform Plugin Framework * fix docker-compose path for tests * fix: ensure documentation can be generated with old provider SDK and new plugin framework * lint
1.1 KiB
1.1 KiB
page_title, subcategory, description
| page_title | subcategory | description |
|---|---|---|
| unifi_setting_mgmt Resource - terraform-provider-unifi | unifi_setting_mgmt manages settings for a unifi site. |
unifi_setting_mgmt (Resource)
unifi_setting_mgmt manages settings for a unifi site.
Example Usage
resource "unifi_site" "example" {
description = "example"
}
resource "unifi_setting_mgmt" "example" {
site = unifi_site.example.name
auto_upgrade = true
}
Schema
Optional
auto_upgrade(Boolean) Automatically upgrade device firmware.site(String) The name of the site to associate the settings with.ssh_enabled(Boolean) Enable SSH authentication.ssh_key(Block Set) SSH key. (see below for nested schema)
Read-Only
id(String) The ID of the settings.
Nested Schema for ssh_key
Required:
name(String) Name of SSH key.type(String) Type of SSH key, e.g. ssh-rsa.
Optional:
comment(String) Comment.key(String) Public SSH key.