* docs: add examples and recreate TF documentation * update readme * add information about experimental support of firewall zones
18 lines
427 B
HCL
18 lines
427 B
HCL
resource "unifi_setting_radius" "example" {
|
|
# Enable RADIUS functionality
|
|
enabled = true
|
|
|
|
# RADIUS server secret
|
|
secret = "your-secure-secret"
|
|
|
|
# Optional: Enable RADIUS accounting
|
|
accounting_enabled = true
|
|
|
|
# Optional: Configure custom ports
|
|
auth_port = 1812
|
|
accounting_port = 1813
|
|
|
|
# Specify the site (optional, defaults to site configured in provider, otherwise "default")
|
|
# site = "default"
|
|
}
|