8000 feat: add dynamic parameters websocket endpoint by aslilac · Pull Request #17165 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: add dynamic parameters websocket endpoint #17165

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
terraform fmt
  • Loading branch information
aslilac committed Apr 10, 2025
commit c463fb4cbe6f94461dc8825418be42edf169c799
4 changes: 2 additions & 2 deletions coderd/testdata/dynamicparameters/groups/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ terraform {
}
}

data coder_workspace_owner "me" {}
data "coder_workspace_owner" "me" {}

output "groups" {
value = data.coder_workspace_owner.me.groups
}

data "coder_parameter" "group" {
name = "group"
name = "group"
default = try(data.coder_workspace_owner.me.groups[0], "")
dynamic "option" {
for_each = data.coder_workspace_owner.me.groups
Expand Down
Loading
0