gitlab_group_epic_board (Resource)

The gitlab_group_epic_board resource allows to manage the lifecycle of a epic board in a group.

Upstream API: GitLab REST API docs

Example Usage

resource "gitlab_group" "example" {
  name        = "test_group"
  path        = "test_group"
  description = "An example group"
}

resource "gitlab_group_label" "label_1" {
  group = gitlab_group.example.id
  color = "#FF0000"
  name  = "red-label"
}

resource "gitlab_group_label" "label_3" {
  group = gitlab_group.example.id
  name  = "label-3"
  color = "#003000"
}

resource "gitlab_group_epic_board" "epic_board" {
  name  = "epic board 6"
  group = gitlab_group.example.path
  lists {
    label_id = gitlab_group_label.label_1.label_id
  }
}

Schema

Required

Optional

Read-Only

Nested Schema for lists

Optional:

Read-Only:

Import

Import is supported using the following syntax:

# You can import this resource with an id made up of `{group-id}:{epic-board-id}`, e.g.
terraform import gitlab_group_epic_board.agile 70:156