From d98bfcb20b75b5eb85b9dab87a49379fc446695c Mon Sep 17 00:00:00 2001 From: Parkreiner Date: Tue, 2 Jul 2024 15:21:45 +0000 Subject: [PATCH] fix: add versioning to all code snippets --- windows-rdp/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/windows-rdp/README.md b/windows-rdp/README.md index 2ddf3f8..d80fc42 100644 --- a/windows-rdp/README.md +++ b/windows-rdp/README.md @@ -14,8 +14,8 @@ Enable Remote Desktop + a web based client on Windows workspaces, powered by [de ```tf # AWS example. See below for examples of using this module with other providers module "windows_rdp" { - source = "github.com/coder/modules/windows-rdp" - version = "1.0.15" + 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 @@ -32,8 +32,9 @@ https://github.com/coder/modules/assets/28937484/fb5f4a55-7b69-4550-ab62-301e13a ```tf module "windows_rdp" { + source = "registry.coder.com/coder/module/windows-rdp" + version = "1.0.16" 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 } @@ -43,8 +44,9 @@ module "windows_rdp" { ```tf module "windows_rdp" { + source = "registry.coder.com/coder/module/windows-rdp" + version = "1.0.16" 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 }