» github_repository
This resource allows you to create and manage repositories within your GitHub organization.
This resource cannot currently be used to manage personal repositories, outside of organizations.
» Example Usage
resource "github_repository" "example" {
name = "example"
description = "My awesome codebase"
private = true
}
» Argument Reference
The following arguments are supported:
-
name
- (Required) The name of the repository. -
description
- (Optional) A description of the repository. -
homepage_url
- (Optional) URL of a page describing the project. -
private
- (Optional) Set totrue
to create a private repository. Repositories are created as public (e.g. open source) by default. -
has_issues
- (Optional) Set totrue
to enable the GitHub Issues features on the repository. -
has_projects
- (Optional) Set totrue
to enable the GitHub Projects features on the repository. Per the github documentation when in an organization that has disabled repository projects it will default tofalse
and will otherwise default totrue
. If you specifytrue
when it has been disabled it will return an error. -
has_wiki
- (Optional) Set totrue
to enable the GitHub Wiki features on the repository. -
allow_merge_commit
- (Optional) Set tofalse
to disable merge commits on the repository. -
allow_squash_merge
- (Optional) Set tofalse
to disable squash merges on the repository. -
allow_rebase_merge
- (Optional) Set tofalse
to disable rebase merges on the repository. -
has_downloads
- (Optional) Set totrue
to enable the (deprecated) downloads features on the repository. -
auto_init
- (Optional) Set totrue
to produce an initial commit in the repository. -
gitignore_template
- (Optional) Use the name of the template without the extension. For example, "Haskell". -
license_template
- (Optional) Use the name of the template without the extension. For example, "mit" or "mpl-2.0". -
default_branch
- (Optional) The name of the default branch of the repository. NOTE: This can only be set after a repository has already been created, and after a correct reference has been created for the target branch inside the repository. This means a user will have to omit this parameter from the initial repository creation and create the target branch inside of the repository prior to setting this attribute. -
archived
- (Optional) Specifies if the repository should be archived. Defaults tofalse
. -
topics
- (Optional) The list of topics of the repository.
NOTE Currently, the API does not support unarchiving.
» Attributes Reference
The following additional attributes are exported:
-
full_name
- A string of the form "orgname/reponame". -
html_url
- URL to the repository on the web. -
ssh_clone_url
- URL that can be provided togit clone
to clone the repository via SSH. -
http_clone_url
- URL that can be provided togit clone
to clone the repository via HTTPS. -
git_clone_url
- URL that can be provided togit clone
to clone the repository anonymously via the git protocol. -
svn_url
- URL that can be provided tosvn checkout
to check out the repository via GitHub's Subversion protocol emulation.
» Import
Repositories can be imported using the name
, e.g.
$ terraform import github_repository.terraform terraform