Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.42 KB

tacacs_server.md

File metadata and controls

42 lines (31 loc) · 1.42 KB
page_title subcategory description
netscalersdx_tacacs_server Resource - terraform-provider-netscalersdx
Configuration for TACACS Server configuration resource.

netscalersdx_tacacs_server (Resource)

Configuration for TACACS Server configuration resource.

Example Usage

resource "netscalersdx_tacacs_server" "tf_tacacs_server" {
  name       = "tf_tacacs_server"
  port       = 545
  tacacs_key = "key"
  ip_address = "10.10.10.11"
}

Schema

Required

  • ip_address (String) IP Address of TACACS server. Minimum length = 1 Maximum length = 64
  • name (String) Name of TACACS server. Minimum length = 1 Maximum length = 128
  • tacacs_key (String) Key shared between the TACACS+ server and clients. Minimum length = 1 Maximum length = 64

Optional

  • accounting (Boolean) Enable accounting in the tacacs server.
  • auth_timeout (Number) The maximum number of seconds the system will wait for a response from the TACACS server. Minimum value = 1 Maximum value =
  • group_attr_name (String) The Attribute name for group extraction from the ACS server. If not passed, then groups will not be extracted. No other harm. Maximum length = 64
  • port (Number) port number of TACACS server. Minimum value = 1 Maximum value =

Read-Only

  • id (String) The ID of this resource.