diff --git a/bun.lockb b/bun.lockb index d3e2214..d9abc98 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/windows-rdp/main.test.ts b/windows-rdp/main.test.ts index 381f12d..3363b34 100644 --- a/windows-rdp/main.test.ts +++ b/windows-rdp/main.test.ts @@ -43,7 +43,7 @@ describe("Web RDP", async () => { testRequiredVariables(import.meta.dir, { agent_id: "foo", resource_id: "bar", - share: "owner" + share: "owner", }); it("Has the PowerShell script install Devolutions Gateway", async () => { @@ -96,7 +96,7 @@ describe("Web RDP", async () => { { agent_id: "foo", resource_id: "bar", - share: "owner" + share: "owner", }, ); diff --git a/windows-rdp/main.tf b/windows-rdp/main.tf index 1cafa49..8b0d5a8 100644 --- a/windows-rdp/main.tf +++ b/windows-rdp/main.tf @@ -10,7 +10,7 @@ terraform { } variable "share" { - type = string + type = string description = "The share level of the Coder app. Either 'owner' | 'authenticated' | 'public' " }