1.6 KiB
1.6 KiB
| display_name | description | icon | verified | tags | ||||
|---|---|---|---|---|---|---|---|---|
| RDP Web | RDP Server and Web Client, powered by Devolutions Gateway | ../../../../.icons/desktop.svg | true |
|
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.3.0"
agent_id = coder_agent.main.id
}
Video
Examples
With AWS
module "windows_rdp" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windows-rdp/coder"
version = "1.3.0"
agent_id = coder_agent.main.id
}
With Google Cloud
module "windows_rdp" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/windows-rdp/coder"
version = "1.3.0"
agent_id = coder_agent.main.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.3.0"
agent_id = coder_agent.main.id
devolutions_gateway_version = "2025.2.2" # Specify a specific version
}