fix: update structure of README for linter

mes/rdp-glitch-repro
Parkreiner 10 months ago
parent d9d1be08a3
commit a381c3ee29

@ -11,13 +11,29 @@ tags: [windows, rdp, web, desktop]
Enable Remote Desktop + a web based client on Windows workspaces, powered by [devolutions-gateway](https://github.com/Devolutions/devolutions-gateway). 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 = "github.com/coder/modules//windows-rdp"
agent_id = resource.coder_agent.main.id
resource_id = resource.aws_instance.dev.id
}
module "windows_rdp" {
count = data.coder_workspace.me.start_count
source = "github.com/coder/modules//windows-rdp"
agent_id = resource.coder_agent.main.id
resource_id = resource.google_compute_instance.dev[0].id
}
```
## Video ## Video
<-- Insert demo video here --> <-- Insert demo video here -->
## Usage ## Examples
For AWS: ### With AWS
```tf ```tf
module "windows_rdp" { module "windows_rdp" {
@ -28,7 +44,7 @@ module "windows_rdp" {
} }
``` ```
For Google Cloud: ### With Google Cloud
```tf ```tf
module "windows_rdp" { module "windows_rdp" {
@ -39,10 +55,6 @@ module "windows_rdp" {
} }
``` ```
## Tested on
- ✅ GCP with Windows Server 2022: [Example template](https://gist.github.com/bpmct/18918b8cab9f20295e5c4039b92b5143)
## Roadmap ## Roadmap
- [ ] Test on Microsoft Azure. - [ ] Test on Microsoft Azure.

Loading…
Cancel
Save