You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
modules/windows-rdp
Parkreiner 83ffef3a7b wip: try breaking coder UI on purpose 1 year ago
..
README.md fix: update structure of README for linter 1 year ago
devolutions-patch.js refactor: clean up patch logic for clarity 1 year ago
main.test.ts fix: update null check and remove typo 1 year ago
main.tf wip: try breaking coder UI on purpose 1 year ago

README.md

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      = "github.com/coder/modules//windows-rdp"
  agent_id    = resource.coder_agent.main.id
  resource_id = resource.aws_instance.dev.id
}
module "windows_rdp" {
  count       = data.coder_workspace.me.start_count
  source      = "github.com/coder/modules//windows-rdp"
  agent_id    = resource.coder_agent.main.id
  resource_id = resource.google_compute_instance.dev[0].id
}

Video

<-- Insert demo video here -->

Examples

With AWS

module "windows_rdp" {
  count       = data.coder_workspace.me.start_count
  source      = "github.com/coder/modules//windows-rdp"
  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      = "github.com/coder/modules//windows-rdp"
  agent_id    = resource.coder_agent.main.id
  resource_id = resource.google_compute_instance.dev[0].id
}

Roadmap

  • Test on Microsoft Azure.