Windows Domain Controller

A Windows Domain Controller is the hub of network management in a Windows domain, handling user authentication, resource access, and security policies.

Example Terraform Resource Usage


resource "apono_integration" "windows-domain-controller-integration" {
  name                     = "Windows Domain Controller"
  type                     = "windows-domain-controller"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  metadata = {
    host = "<Host>"
    port = "<WinRM Port>"
    rdp_port = "<RDP Port>"
    ssl = "<Use SSL connection>"
    email_selector_field_name_override = "<User Email Attribute Name>"
  }
  kubernetes_secret = {
    name      = "name_template_value"
    namespace = "namespace_template_value"
  }
}

Schema


  • type windows-domain-controller

  • connected_resource_types List of resource types to sync. The following are the available resource type/s you can use:

    • windows-domain-controller

    • windows-domain-controller-server

    • windows-domain-controller-server-group

Metadata

  • host (Required | String) Host

  • port (Required | String) WinRM Port

    • Default value: 5985

  • rdp_port (Optional | String) RDP Port

    • Default value: 3389

  • ssl (Required | String) Use SSL connection

    • Default value: false

    • Possible values: false, true

  • email_selector_field_name_override (Optional | String) User Email Attribute Name

    • Default value: UserPrincipalName

Last updated