Skip to content

Latest commit

 

History

History
252 lines (149 loc) · 14.9 KB

File metadata and controls

252 lines (149 loc) · 14.9 KB
layout github
page_title GitHub: github_repository
description Creates and manages repositories within GitHub organizations or personal accounts

github_repository

This resource allows you to create and manage repositories within your GitHub organization or personal account.

~> Note When used with GitHub App authentication, even GET requests must have the contents:write permission. Without it, the following arguments will be ignored, leading to unexpected behavior and confusing diffs: allow_merge_commit, allow_squash_merge, allow_rebase_merge, merge_commit_title, merge_commit_message, squash_merge_commit_title and squash_merge_commit_message.

Example Usage

resource "github_repository" "example" {
  name        = "example"
  description = "My awesome codebase"

  visibility = "public"

  template {
    owner                = "github"
    repository           = "terraform-template-module"
    include_all_branches = true
  }
}

Example Usage with GitHub Pages Enabled

resource "github_repository" "example" {
  name        = "example"
  description = "My awesome web page"

  private = false

  pages {
    source {
      branch = "master"
      path   = "/docs"
    }
  }
}

Example Usage with Repository Forking

resource "github_repository" "forked_repo" {
  name         = "forked-repository"
  description  = "This is a fork of another repository"
  fork         = true
  source_owner = "some-org"
  source_repo  = "original-repository"
}

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.

  • fork - (Optional) Set to true to create a fork of an existing repository. When set to true, both source_owner and source_repo must also be specified.

  • source_owner - (Optional) The GitHub username or organization that owns the repository being forked. Required when fork is true.

  • source_repo - (Optional) The name of the repository to fork. Required when fork is true.

  • private - (Optional) Set to true to create a private repository. Repositories are created as public (e.g. open source) by default.

  • visibility - (Optional) Can be public or private. If your organization is associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+, visibility can also be internal. The visibility parameter overrides the private parameter.

  • has_issues - (Optional) Set to true to enable the GitHub Issues features on the repository.

  • has_discussions - (Optional) Set to true to enable GitHub Discussions on the repository. Defaults to false.

  • has_projects - (Optional) Set to true 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 to false and will otherwise default to true. If you specify true when it has been disabled it will return an error.

  • has_wiki - (Optional) Set to true to enable the GitHub Wiki features on the repository.

  • is_template - (Optional) Set to true to tell GitHub that this is a template repository.

  • allow_merge_commit - (Optional) Set to false to disable merge commits on the repository.

  • allow_squash_merge - (Optional) Set to false to disable squash merges on the repository.

  • allow_rebase_merge - (Optional) Set to false to disable rebase merges on the repository.

  • allow_auto_merge - (Optional) Set to true to allow auto-merging pull requests on the repository.

  • allow_forking - (Optional) Configure private forking for organization owned private and internal repositories; set to true to enable, false to disable, and leave unset for the default behaviour. Configuring this requires that private forking is not being explicitly configured at the organization level.

  • squash_merge_commit_title - (Optional) Can be PR_TITLE or COMMIT_OR_PR_TITLE for a default squash merge commit title. Applicable only if allow_squash_merge is true.

  • squash_merge_commit_message - (Optional) Can be PR_BODY, COMMIT_MESSAGES, or BLANK for a default squash merge commit message. Applicable only if allow_squash_merge is true.

  • merge_commit_title - Can be PR_TITLE or MERGE_MESSAGE for a default merge commit title. Applicable only if allow_merge_commit is true.

  • merge_commit_message - Can be PR_BODY, PR_TITLE, or BLANK for a default merge commit message. Applicable only if allow_merge_commit is true.

  • delete_branch_on_merge - (Optional) Automatically delete head branch after a pull request is merged. Defaults to false.

  • web_commit_signoff_required - (Optional) Require contributors to sign off on web-based commits. See more here.

  • has_downloads - (DEPRECATED) (Optional) Set to true to enable the (deprecated) downloads features on the repository. This attribute is no longer in use, but it hasn't been removed yet. It will be removed in a future version. See this discussion.

  • auto_init - (Optional) Set to true 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) (Deprecated: Use github_branch_default resource instead) 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 to false. NOTE Currently, the API does not support unarchiving.

  • archive_on_destroy - (Optional) Set to true to archive the repository instead of deleting on destroy.

  • pages - (Optional) The repository's GitHub Pages configuration. See GitHub Pages Configuration below for details.

  • security_and_analysis - (Optional) The repository's security and analysis configuration. See Security and Analysis Configuration below for details.

  • topics - (Optional) The list of topics of the repository.

~> Note: This attribute is not compatible with the github_repository_topics resource. Use one of them. github_repository_topics is only meant to be used if the repository itself is not handled via terraform, for example if it's only read as a datasource (see issue #1845).

  • template - (Optional) Use a template repository to create this resource. See Template Repositories below for details.

  • vulnerability_alerts - (Optional) Configure Dependabot security alerts for vulnerable dependencies; set to true to enable, set to false to disable, and leave unset for the default behavior. Configuring this requires that alerts are not being explicitly configured at the organization level.

  • ignore_vulnerability_alerts_during_read (DEPRECATED) (Optional) - This is ignored as the provider now handles lack of permissions automatically.

  • allow_update_branch (Optional) - Set to true to always suggest updating pull request branches.

GitHub Pages Configuration

The pages block supports the following:

  • source - (Optional) The source branch and directory for the rendered Pages site. See GitHub Pages Source below for details.

  • build_type - (Optional) The type of GitHub Pages site to build. Can be legacy or workflow. If you use legacy as build type you need to set the option source.

  • cname - (Optional) The custom domain for the repository. This can only be set after the repository has been created.

GitHub Pages Source

The source block supports the following:

  • branch - (Required) The repository branch used to publish the site's source files. (i.e. main or gh-pages.

  • path - (Optional) The repository directory from which the site publishes (Default: /).

Security and Analysis Configuration

The security_and_analysis block supports the following:

  • advanced_security - (Optional) The advanced security configuration for the repository. See Advanced Security Configuration below for details. If a repository's visibility is public, advanced security is always enabled and cannot be changed, so this setting cannot be supplied.

  • code_security - (Optional) The code security configuration for the repository. See Code Security below for details.

  • secret_scanning - (Optional) The secret scanning configuration for the repository. See Secret Scanning Configuration below for details.

  • secret_scanning_push_protection - (Optional) The secret scanning push protection configuration for the repository. See Secret Scanning Push Protection Configuration below for details.

  • secret_scanning_ai_detection - (Optional) The secret scanning ai detection configuration for the repository. See Secret Scanning AI Detection Configuration below for details.

  • secret_scanning_non_provider_patterns - (Optional) The secret scanning non-provider patterns configuration for this repository. See Secret Scanning Non-Provider Patterns Configuration below for more details.

Advanced Security Configuration

The advanced_security block supports the following:

  • status - (Required) Set to enabled to enable advanced security features on the repository. Can be enabled or disabled.

Code Security Configuration

  • status - (Required) Set to enabled to enable GitHub Code Security on the repository. Can be enabled or disabled. If set to enabled, the repository's visibility must be public, security_and_analysis[0].advanced_security[0].status must also be set to enabled, or your Organization must have split licensing for Advanced security.

Secret Scanning Configuration

  • status - (Required) Set to enabled to enable secret scanning on the repository. Can be enabled or disabled. If set to enabled, the repository's visibility must be public, security_and_analysis[0].advanced_security[0].status must also be set to enabled, or your Organization must have split licensing for Advanced security.

Secret Scanning Push Protection Configuration

  • status - (Required) Set to enabled to enable secret scanning push protection on the repository. Can be enabled or disabled. If set to enabled, the repository's visibility must be public, security_and_analysis[0].advanced_security[0].status must also be set to enabled, or your Organization must have split licensing for Advanced security.

Secret Scanning AI Detection

  • status - (Required) Set to enabled to enable secret scanning AI detection on the repository. Can be enabled or disabled. If set to enabled, the repository's visibility must be public, security_and_analysis[0].advanced_security[0].status must also be set to enabled, or your Organization must have split licensing for Advanced security.

Secret Scanning Non-Provider Patterns

  • status - (Required) Set to enabled to enable secret scanning non-provider patterns on the repository. Can be enabled or disabled. If set to enabled, the repository's visibility must be public, security_and_analysis[0].advanced_security[0].status must also be set to enabled, or your Organization must have split licensing for Advanced security.

Template Repositories

template supports the following arguments:

  • owner: The GitHub organization or user the template repository is owned by.
  • repository: The name of the template repository.
  • include_all_branches: Whether the new repository should include all the branches from the template repository (defaults to false, which includes only the default branch from the template).

~> Note on internal visibility with templates: When creating a repository from a template with visibility = "internal", the provider uses a two-step process due to GitHub API limitations. The template creation API only supports a private boolean parameter. Therefore, repositories with visibility = "internal" are initially created as private and then immediately updated to internal visibility. This ensures internal repositories are never exposed publicly during creation.

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 to git clone to clone the repository via SSH.

  • http_clone_url - URL that can be provided to git clone to clone the repository via HTTPS.

  • git_clone_url - URL that can be provided to git clone to clone the repository anonymously via the git protocol.

  • svn_url - URL that can be provided to svn checkout to check out the repository via GitHub's Subversion protocol emulation.

  • node_id - GraphQL global node id for use with v4 API

  • repo_id - GitHub ID for the repository

  • primary_language - The primary language used in the repository.

  • pages - The block consisting of the repository's GitHub Pages configuration with the following additional attributes:

  • custom_404 - Whether the rendered GitHub Pages site has a custom 404 page.

  • html_url - The absolute URL (including scheme) of the rendered GitHub Pages site e.g. https://username.github.io.

  • status - The GitHub Pages site's build status e.g. building or built.

Import

Repositories can be imported using the name, e.g.

terraform import github_repository.terraform myrepo