Skip to content
This repository has been archived by the owner on Jan 8, 2021. It is now read-only.

Latest commit

 

History

History
32 lines (23 loc) · 742 Bytes

project_column.html.markdown

File metadata and controls

32 lines (23 loc) · 742 Bytes
layout page_title description
github
GitHub: github_project_column
Creates and manages project columns for GitHub projects

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.