github_repository_project

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

Example Usage

resource "github_repository" "example" {
  name         = "example"
  description  = "My awesome codebase"
  has_projects = true
}

resource "github_repository_project" "project" {
  name       = "A Repository Project"
  repository = "${github_repository.example.name}"
  body       = "This is a repository project."
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following additional attributes are exported: