Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.33 KB

File metadata and controls

46 lines (35 loc) · 1.33 KB
page_title subcategory description
netscalersdx_mpsuser Resource - terraform-provider-netscalersdx
Configuration for System User resource.

netscalersdx_mpsuser (Resource)

Configuration for System User resource.

Example Usage

resource "netscalersdx_mpsuser" "tf_mpsuser" {
  name                    = "tf_mpsuser"
  password                = "VerySecret@1234"
  external_authentication = "false"
  groups                  = ["read_only"]
  session_timeout        = "20"
  session_timeout_unit   = "Minutes"
  enable_session_timeout = "true"
}

Schema

Required

  • groups (List of String) Groups to which user belongs.
  • name (String) User Name. Minimum length = 1 Maximum length = 128
  • password (String) Password. Minimum length = 1 Maximum length = 128

Optional

  • enable_session_timeout (Boolean) Enables session timeout for user.
  • external_authentication (Boolean) Enable external authentication.
  • session_timeout (Number) Session timeout for the user.
  • session_timeout_unit (String) Session timeout unit for the user.
  • tenant_id (String) Tenant Id of the system users. Minimum length = 1 Maximum length = 128

Read-Only

  • id (String) The ID of this resource.