Skip to content

Commit d9d1be0

Browse files
committed
fix: update README for RDP
1 parent 7a8483d commit d9d1be0

File tree

1 file changed

+23
-10
lines changed

1 file changed

+23
-10
lines changed

windows-rdp/README.md

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,40 @@
11
---
22
display_name: Windows RDP
3-
description: RDP Server and Web Client powered by Devolutions
3+
description: RDP Server and Web Client, powered by Devolutions Gateway
44
icon: ../.icons/desktop.svg
55
maintainer_github: coder
6-
verified: false
6+
verified: true
77
tags: [windows, rdp, web, desktop]
88
---
99

1010
# Windows RDP
1111

12-
Enable Remote Desktop + a web based client on Windows workspaces, powered by [devolutions-gateway](https://github.com/Devolutions/devolutions-gateway)
12+
Enable Remote Desktop + a web based client on Windows workspaces, powered by [devolutions-gateway](https://github.com/Devolutions/devolutions-gateway).
1313

14-
[![Web RDP on Windows](https://cdn.loom.com/sessions/thumbnails/a5d98c7007a7417fb572aba1acf8d538-with-play.gif)](https://www.loom.com/share/a5d98c7007a7417fb572aba1acf8d538)
14+
## Video
15+
16+
<-- Insert demo video here -->
1517

1618
## Usage
1719

20+
For AWS:
21+
22+
```tf
23+
module "windows_rdp" {
24+
count = data.coder_workspace.me.start_count
25+
source = "github.com/coder/modules//windows-rdp"
26+
agent_id = resource.coder_agent.main.id
27+
resource_id = resource.aws_instance.dev.id
28+
}
29+
```
30+
31+
For Google Cloud:
32+
1833
```tf
1934
module "windows_rdp" {
20-
count = data.coder_workspace.me.start_count
21-
source = "github.com/coder/modules//windows-rdp?ref=web-rdp"
22-
agent_id = resource.coder_agent.main.id
35+
count = data.coder_workspace.me.start_count
36+
source = "github.com/coder/modules//windows-rdp"
37+
agent_id = resource.coder_agent.main.id
2338
resource_id = resource.google_compute_instance.dev[0].id
2439
}
2540
```
@@ -30,6 +45,4 @@ module "windows_rdp" {
3045

3146
## Roadmap
3247

33-
- [ ] Test on additional cloud providers
34-
- [ ] Automatically establish web RDP session when users click "web RDP"
35-
> This may require forking [the webapp from devolutions-gateway](https://github.com/Devolutions/devolutions-gateway/tree/master/webapp), modifying `webapp/`, building, and specifying a new [static root path](https://github.com/Devolutions/devolutions-gateway/blob/a884cbb8ff313496fb3d4072e67ef75350c40c03/devolutions-gateway/tests/config.rs#L271). Ideally we can upstream this functionality.
48+
- [ ] Test on Microsoft Azure.

0 commit comments

Comments
 (0)