We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
group
1 parent 0de978e commit d986db0Copy full SHA for d986db0
registry/coder/modules/local-windows-rdp/main.tf
@@ -44,6 +44,12 @@ variable "order" {
44
default = null
45
}
46
47
+variable "group" {
48
+ type = string
49
+ description = "The name of a group that this app belongs to."
50
+ default = null
51
+}
52
+
53
locals {
54
# Extract server name from workspace access URL
55
server_name = regex("https?:\\/\\/([^\\/]+)", data.coder_workspace.me.access_url)[0]
@@ -70,5 +76,6 @@ resource "coder_app" "rdp_desktop" {
70
76
icon = "/icon/desktop.svg"
71
77
external = true
72
78
order = var.order
79
+ group = var.group
73
80
74
81
0 commit comments