* docs: add examples and recreate TF documentation * update readme * add information about experimental support of firewall zones
40 lines
1.3 KiB
Markdown
40 lines
1.3 KiB
Markdown
---
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
page_title: "unifi_setting_ssl_inspection Resource - terraform-provider-unifi"
|
|
subcategory: ""
|
|
description: |-
|
|
Manages SSL Inspection settings for a UniFi site. SSL inspection is a security feature that allows the UniFi Security Gateway (USG) to inspect encrypted traffic for security threats.
|
|
---
|
|
|
|
# unifi_setting_ssl_inspection (Resource)
|
|
|
|
Manages SSL Inspection settings for a UniFi site. SSL inspection is a security feature that allows the UniFi Security Gateway (USG) to inspect encrypted traffic for security threats.
|
|
|
|
## Example Usage
|
|
|
|
```terraform
|
|
resource "unifi_setting_ssl_inspection" "example" {
|
|
# Configure SSL inspection state
|
|
# Valid options: "off", "simple", "advanced"
|
|
state = "advanced"
|
|
|
|
# Specify the site (optional, defaults to site configured in provider, otherwise "default")
|
|
# site = "default"
|
|
}
|
|
```
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
## Schema
|
|
|
|
### Required
|
|
|
|
- `state` (String) The mode of SSL inspection. Valid values are: `off`, `simple`, or `advanced`.
|
|
|
|
### 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.
|