-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #262 from coder/web-rdp
feat: add module for Web RDP
- Loading branch information
Showing
9 changed files
with
839 additions
and
56 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
display_name: Windows RDP | ||
description: RDP Server and Web Client, powered by Devolutions Gateway | ||
icon: ../.icons/desktop.svg | ||
maintainer_github: coder | ||
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" { | ||
source = "registry.coder.com/coder/module/windows-rdp" | ||
version = "1.0.16" | ||
count = data.coder_workspace.me.start_count | ||
agent_id = resource.coder_agent.main.id | ||
resource_id = resource.aws_instance.dev.id | ||
} | ||
``` | ||
|
||
## Video | ||
|
||
https://github.com/coder/modules/assets/28937484/fb5f4a55-7b69-4550-ab62-301e13a4be02 | ||
|
||
## Examples | ||
|
||
### With AWS | ||
|
||
```tf | ||
module "windows_rdp" { | ||
source = "registry.coder.com/coder/module/windows-rdp" | ||
version = "1.0.16" | ||
count = data.coder_workspace.me.start_count | ||
agent_id = resource.coder_agent.main.id | ||
resource_id = resource.aws_instance.dev.id | ||
} | ||
``` | ||
|
||
### With Google Cloud | ||
|
||
```tf | ||
module "windows_rdp" { | ||
source = "registry.coder.com/coder/module/windows-rdp" | ||
version = "1.0.16" | ||
count = data.coder_workspace.me.start_count | ||
agent_id = resource.coder_agent.main.id | ||
resource_id = resource.google_compute_instance.dev[0].id | ||
} | ||
``` | ||
|
||
## Roadmap | ||
|
||
- [ ] Test on Microsoft Azure. |
Oops, something went wrong.