blink-so[bot] 6d1e99d6ae
feat: add configurable Devolutions Gateway version for windows-rdp module (#148)
Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com>
Co-authored-by: matifali <10648092+matifali@users.noreply.github.com>
2025-06-11 23:14:30 +05:00

1.9 KiB

display_name description icon maintainer_github verified tags
Windows RDP RDP Server and Web Client, powered by Devolutions Gateway ../../../../.icons/desktop.svg coder true
windows
rdp
web
desktop

Windows RDP

Enable Remote Desktop + a web based client on Windows workspaces, powered by devolutions-gateway.

# AWS example. See below for examples of using this module with other providers
module "windows_rdp" {
  count       = data.coder_workspace.me.start_count
  source      = "registry.coder.com/coder/windows-rdp/coder"
  version     = "1.2.0"
  agent_id    = resource.coder_agent.main.id
  resource_id = resource.aws_instance.dev.id
}

Video

Video

Examples

With AWS

module "windows_rdp" {
  count       = data.coder_workspace.me.start_count
  source      = "registry.coder.com/coder/windows-rdp/coder"
  version     = "1.2.0"
  agent_id    = resource.coder_agent.main.id
  resource_id = resource.aws_instance.dev.id
}

With Google Cloud

module "windows_rdp" {
  count       = data.coder_workspace.me.start_count
  source      = "registry.coder.com/coder/windows-rdp/coder"
  version     = "1.2.0"
  agent_id    = resource.coder_agent.main.id
  resource_id = resource.google_compute_instance.dev[0].id
}

With Custom Devolutions Gateway Version

module "windows_rdp" {
  count                       = data.coder_workspace.me.start_count
  source                      = "registry.coder.com/coder/windows-rdp/coder"
  version                     = "1.2.0"
  agent_id                    = resource.coder_agent.main.id
  resource_id                 = resource.aws_instance.dev.id
  devolutions_gateway_version = "2025.1.6" # Specify a specific version
}

Roadmap

  • Test on Microsoft Azure.