Files
terraform-provider-unifi/docs/resources/radius_profile.md
Mateusz Filipowicz 325d7b7f20 feat: initialize Terraform Plugin Framework (#23)
* 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
2025-02-24 00:11:41 +01:00

2.1 KiB

page_title, subcategory, description
page_title subcategory description
unifi_radius_profile Resource - terraform-provider-unifi unifi_radius_profile manages RADIUS profiles.

unifi_radius_profile (Resource)

unifi_radius_profile manages RADIUS profiles.

Schema

Required

  • name (String) The name of the profile.

Optional

  • accounting_enabled (Boolean) Specifies whether to use RADIUS accounting. Defaults to false.
  • acct_server (Block List) RADIUS accounting servers. (see below for nested schema)
  • auth_server (Block List) RADIUS authentication servers. (see below for nested schema)
  • interim_update_enabled (Boolean) Specifies whether to use interim_update. Defaults to false.
  • interim_update_interval (Number) Specifies interim_update interval. Defaults to 3600.
  • site (String) The name of the site to associate the settings with.
  • use_usg_acct_server (Boolean) Specifies whether to use usg as a RADIUS accounting server. Defaults to false.
  • use_usg_auth_server (Boolean) Specifies whether to use usg as a RADIUS authentication server. Defaults to false.
  • vlan_enabled (Boolean) Specifies whether to use vlan on wired connections. Defaults to false.
  • vlan_wlan_mode (String) Specifies whether to use vlan on wireless connections. Must be one of disabled, optional, or required. Defaults to ``.

Read-Only

  • id (String) The ID of the settings.

Nested Schema for acct_server

Required:

  • ip (String) IP address of accounting service server.
  • xsecret (String, Sensitive) RADIUS secret.

Optional:

  • port (Number) Port of accounting service. Defaults to 1813.

Nested Schema for auth_server

Required:

  • ip (String) IP address of authentication service server.
  • xsecret (String, Sensitive) RADIUS secret.

Optional:

  • port (Number) Port of authentication service. Defaults to 1812.