Skip to content

Commit d986db0

Browse files
authored
add group
1 parent 0de978e commit d986db0

File tree

1 file changed

+7
-0
lines changed
  • registry/coder/modules/local-windows-rdp

1 file changed

+7
-0
lines changed

registry/coder/modules/local-windows-rdp/main.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ variable "order" {
4444
default = null
4545
}
4646

47+
variable "group" {
48+
type = string
49+
description = "The name of a group that this app belongs to."
50+
default = null
51+
}
52+
4753
locals {
4854
# Extract server name from workspace access URL
4955
server_name = regex("https?:\\/\\/([^\\/]+)", data.coder_workspace.me.access_url)[0]
@@ -70,5 +76,6 @@ resource "coder_app" "rdp_desktop" {
7076
icon = "/icon/desktop.svg"
7177
external = true
7278
order = var.order
79+
group = var.group
7380
}
7481

0 commit comments

Comments
 (0)