Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 1.25 KB

File metadata and controls

45 lines (34 loc) · 1.25 KB
page_title subcategory description
netscalersdx_smtp_server Resource - terraform-provider-netscalersdx
Configuration for SMTP server properties resource.

netscalersdx_smtp_server (Resource)

Configuration for SMTP server properties resource.

Example Usage

resource "netscalersdx_smtp_server" "tf_smtp_server" {
  server_name    = "tf_smtp_server"
  sender_mail_id = "abc.com"
  password       = "secret"
  port           = 587
  username       = "user"
  is_ssl         = "true"
  is_auth        = "true"
}

Schema

Required

  • server_name (String) SMTP server name. Minimum length = 1 Maximum length = 128

Optional

  • is_auth (Boolean) Is authentication enabled for this smtp server.
  • is_ssl (Boolean) Is this smtp server is SSL support configured..
  • password (String) Password for the smtp server. Maximum length = 128
  • port (Number) SMTP Server port address.. Minimum value = 1 Maximum value =
  • sender_mail_id (String) Email Address from which email is to be sent.
  • username (String) Username for the smtp server. Maximum length = 128

Read-Only

  • id (String) The ID of this resource.