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 Usage
resource "apono_integration" "windows-domain-controller-integration" {
name = "Windows Domain Controller"
type = "windows-domain-controller"
connector_id = "apono-connector-id"
connected_resource_types = ["windows-domain-controller-server"]
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-controllerconnected_resource_types
List of resource types to sync.
Integration Config
host
(Required | String) Hostport
(Required | String) WinRM PortDefault value:
5985
rdp_port
(Optional | String) RDP PortDefault value:
3389
ssl
(Required | String) Use SSL connectionDefault value:
false
Possible values: false, true
email_selector_field_name_override
(Optional | String) User Email Attribute NameDefault value:
UserPrincipalName
Last updated
Was this helpful?