10000 Add `order` to `coder_app` resource · Issue #8994 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content
Add order to coder_app resource #8994
Closed
@matifali

Description

@matifali

Allow ordering coder_app resources on dashboard
Like

resource "coder_app" "jira" {
  // ...
  slug         = "jira"
  display_name = "Jira"
  order        = 1
}

resource "coder_app" "slack" {
  // ...
  slug         = "slack"
  display_name = "Slack"
  order        = 2
}

will display Jira first and then Slack
Moved from #8237 (comment)

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0