Windows Domain Servers
Manage RDP access to the Windows servers of an Active Directory domain. Access is granted by changing Active Directory group membership over LDAP, so the connector only needs to reach a domain control
Example Usage
resource "apono_integration" "windows-domain-integration" {
name = "Windows Domain Servers"
type = "windows-domain"
connector_id = "apono-connector-id"
connected_resource_types = ["windows-domain-server"]
metadata = {
url = "<LDAP Server URL>"
rdp_port = "<RDP Port>"
computers_scope = "<Computers Scope>"
groups_scope = "<Groups Scope>"
user_email_attribute = "<User Email Attribute>"
custom_ca_cert = "<Self-signed server or CA certificate>"
enable_session_audit = "<Audit sessions>"
}
kubernetes_secret = {
name = "name_template_value"
namespace = "namespace_template_value"
}
}resource "apono_resource_integration" "windows-domain-integration" {
name = "Windows Domain Servers"
type = "windows-domain"
connector_id = "apono-connector-id"
connected_resource_types = ["windows-domain-server"]
integration_config = {
url = "<LDAP Server URL>"
rdp_port = "<RDP Port>"
computers_scope = "<Computers Scope>"
groups_scope = "<Groups Scope>"
user_email_attribute = "<User Email Attribute>"
custom_ca_cert = "<Self-signed server or CA certificate>"
enable_session_audit = "<Audit sessions>"
}
secret_store_config = {
kubernetes = {
name = "name_template_value"
namespace = "namespace_template_value"
}
}Schema
typewindows-domainconnected_resource_typesList of resource types to sync.
Integration Config
url(Required | String) LDAP Server URLrdp_port(Optional | String) RDP PortDefault value:
3389
computers_scope(Required | String) Computers Scopegroups_scope(Optional | String) Groups Scopeuser_email_attribute(Optional | String) User Email AttributeDefault value:
mail
custom_ca_cert(Optional | String) Self-signed server or CA certificateenable_session_audit(Optional | String) Audit sessionsDefault value:
falsePossible values: true, false
Last updated
Was this helpful?
