Skip to content

Commit a381c3e

Browse files
committed
fix: update structure of README for linter
1 parent d9d1be0 commit a381c3e

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

windows-rdp/README.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,29 @@ tags: [windows, rdp, web, desktop]
1111

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

14+
```tf
15+
# AWS example. See below for examples of using this module with other providers
16+
module "windows_rdp" {
17+
count = data.coder_workspace.me.start_count
18+
source = "github.com/coder/modules//windows-rdp"
19+
agent_id = resource.coder_agent.main.id
20+
resource_id = resource.aws_instance.dev.id
21+
}
22+
module "windows_rdp" {
23+
count = data.coder_workspace.me.start_count
24+
source = "github.com/coder/modules//windows-rdp"
25+
agent_id = resource.coder_agent.main.id
26+
resource_id = resource.google_compute_instance.dev[0].id
27+
}
28+
```
29+
1430
## Video
1531

1632
<-- Insert demo video here -->
1733

18-
## Usage
34+
## Examples
1935

20-
For AWS:
36+
### With AWS
2137

2238
```tf
2339
module "windows_rdp" {
@@ -28,7 +44,7 @@ module "windows_rdp" {
2844
}
2945
```
3046

31-
For Google Cloud:
47+
### With Google Cloud
3248

3349
```tf
3450
module "windows_rdp" {
@@ -39,10 +55,6 @@ module "windows_rdp" {
3955
}
4056
```
4157

42-
## Tested on
43-
44-
- ✅ GCP with Windows Server 2022: [Example template](https://gist.github.com/bpmct/18918b8cab9f20295e5c4039b92b5143)
45-
4658
## Roadmap
4759

4860
- [ ] Test on Microsoft Azure.

0 commit comments

Comments
 (0)