This resource allows you to create and manage columns for GitHub projects.
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"
}
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.