TemplatesModules
Back to Modules
Windows RDP Icon

Windows RDP

By:
RDP Server and Web Client, powered by Devolutions Gateway
README
Variables (5)
Scripts (1)
Apps (2)
Source

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

1# AWS example. See below for examples of using this module with other providers
2module "windows_rdp" {
3  source      = "registry.coder.com/modules/windows-rdp/coder"
4  version     = "1.0.16"
5  count       = data.coder_workspace.me.start_count
6  agent_id    = resource.coder_agent.main.id
7  resource_id = resource.aws_instance.dev.id
8}

Video

Video

Examples

With AWS

1module "windows_rdp" {
2  source      = "registry.coder.com/modules/windows-rdp/coder"
3  version     = "1.0.16"
4  count       = data.coder_workspace.me.start_count
5  agent_id    = resource.coder_agent.main.id
6  resource_id = resource.aws_instance.dev.id
7}

With Google Cloud

1module "windows_rdp" {
2  source      = "registry.coder.com/modules/windows-rdp/coder"
3  version     = "1.0.16"
4  count       = data.coder_workspace.me.start_count
5  agent_id    = resource.coder_agent.main.id
6  resource_id = resource.google_compute_instance.dev[0].id
7}

Roadmap

  • Test on Microsoft Azure.