62 lines
1.6 KiB
Markdown
62 lines
1.6 KiB
Markdown
---
|
|
display_name: RDP Web
|
|
description: RDP Server and Web Client, powered by Devolutions Gateway
|
|
icon: ../../../../.icons/desktop.svg
|
|
verified: true
|
|
tags: [windows, rdp, web, desktop]
|
|
---
|
|
|
|
# Windows RDP
|
|
|
|
Enable Remote Desktop + a web based client on Windows workspaces, powered by [devolutions-gateway](https://github.com/Devolutions/devolutions-gateway).
|
|
|
|
```tf
|
|
# 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
|
|
|
|
[](https://github.com/coder/modules/assets/28937484/fb5f4a55-7b69-4550-ab62-301e13a4be02)
|
|
|
|
## Examples
|
|
|
|
### With AWS
|
|
|
|
```tf
|
|
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
|
|
|
|
```tf
|
|
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
|
|
|
|
```tf
|
|
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
|
|
}
|
|
```
|