» github_project_column

This resource allows you to create and manage columns for GitHub projects.

» Example Usage

resource "github_organization_project" "project" {
  name = "A Organization Project"
  body = "This is an organization project."
}

resource "github_project_column" "column" {
  project_id = "${github_organization_project.project.id}"
  name       = "a column"
}

» Argument Reference

The following arguments are supported:

  • project_id - (Required) The id of an existing project that the column will be created in.

  • name - (Required) The name of the column.