• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

operatehappy/terraform-github-repository: Terraform Module for managing Github R ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

operatehappy/terraform-github-repository

开源软件地址:

https://github.com/operatehappy/terraform-github-repository

开源编程语言:

HCL 100.0%

开源软件介绍:

Terraform Module: GitHub Repository

Terraform Module for managing GitHub Repositories and associated resources.

Table of Contents

Requirements

This module requires Terraform version 0.14.0 or newer.

Dependencies

This module depends on a correctly configured GitHub Provider in your Terraform codebase.

Usage

Add the module to your Terraform resources like so:

module "simple_example" {
  source  = "operatehappy/repository/github"
  version = "3.0.0"

  name       = "oh-demo-simple-example"
  visibility = false
}

Then, fetch the module from the Terraform Registry using terraform get.

Additional usage examples are available in the examples directory via GitHub.

Inputs

Name Description Type Default
allow_merge_commit Toggle to enable Merge Commits for the Repository bool true
allow_rebase_merge Toggle to enable Rebase Merges for the Repository bool true
allow_squash_merge Toggle to enable Squash Merges for the Repository bool true
archive_on_destroy Toggle to archive the Repository on destroy bool false
archived Toggle to archive the Repository (see notes in README.md) bool false
auto_init Toggle to create an initial commit in the Repository bool false
branch_protections List of Branch Protection Objects
list(object({
branch = string,
enforce_admins = bool,
require_signed_commits = bool,
required_status_checks = object({
strict = bool
contexts = list(string)
})

required_pull_request_reviews = object({
dismiss_stale_reviews = bool,
dismissal_users = list(string),
dismissal_teams = list(string),
require_code_owner_reviews = bool,
required_approving_review_count = number // NOTE: this must be 6 or less
})

restrictions = object({
users = list(string),
teams = list(string)
})
}))
[]
default_branch Name of the Default Branch of the Repository string "main"
delete_branch_on_merge Toggle to automatically delete merged Branches for the Repository bool false
deploy_keys List of Deploy Key Objects
list(object({
title = string,
key = string,
read_only = bool
}))
[]
description Description of the Repository string ""
files List of File Objecs
list(object({
file = string,
content = string
}))
[]
gitignore_template Template to use for initial .gitignore file for the Repository string ""
has_downloads Toggle to enable (deprecated) GitHub Downloads for the Repository bool false
has_issues Toggle to enable GitHub Issues for the Repository bool true
has_projects Toggle to enable GitHub Projects for the Repository bool false
has_wiki Toggle to enable GitHub Wiki for the Repository bool true
homepage_url URL of a page describing the Repository string ""
is_template Toggle to enable Template use for the Repository bool false
issue_labels List of Issue Label Objects
list(object({
name = string,
color = string
}))
[]
license_template Identifier to use for initial LICENSE file for the Repository string ""
name Name of the Repository string ""
pages Configuration block for GitHub Pages map(any) {}
projects List of Project Objecs
list(object({
name = string,
body = string
}))
[]
repository_collaborators List of Collaborator Objects
list(object({
username = string
}))
[]
team_repository_teams List of Team Repository Team Objects
list(object({
team_id = string
}))
[]
template Template Repository to use when creating the Repository map(string) {}
topics List of Topics of the Repository list(string) []
visibility Toggle to create a Private Repository string "private"
vulnerability_alerts Toggle to enable Vulnerability Alerts for the Repository bool true

Outputs

Name Description
files Map of Repository File names and corresponding SHA blobs
full_name A string of the form "orgname/reponame"
git_clone_url URL to clone the repository via the git protocol
html_url URL to the repository on the web
http_clone_url URL to clone the repository via HTTPs
name A string of the form "reponame"
node_id Node ID of the Repository
project_ids List of Repository Project IDs
project_urls List of Repository Project IDs
projects Map of Repository Project IDs, and corresponding URLs
repo_id ID of the Repository
ssh_clone_url URL to the repository to clone via SSH
svn_url URL to check out the repository via GitHub's Subversion protocol emulation

Notes

Upgrading from 2.0.0 to 3.x.x

The 3.0.0 version of this module introduced support for the github_branch_default resource, a property that was initially handled through the github_repository resource.

For a better upgrade experience, it is advised to manually import this resource, using the import command:

terraform import module.my_repository.github_branch_default.this "my_repository"

Replace module.my_repository with the Module identifier in use and replace "my_repository" with the name of the repository the data is imported from.

For github_repository resources

  • Resources that are created with the template option enabled will be re-created (that is: destroyed, then created again) when the template stub is removed

  • Resources that are archived using the archive option cannot be unarchived, as the GitHub API does not currently support this

  • Starting with 3.0.0 of this Module, the default branch option is no longer set through the github_repository resource

For github_repository_deploy_key resources

  • Deploy Key resources expect a string for the deploy_key.key variable. Use the file function if key material is not available as a Terraform-variable already

  • For a step-by-step guide on how to generate SSH Keys, see this article on GitHub

For github_branch_protection resources

For github_repository_project resources

  • Project resources require GitHub Projects to be enabled for the Organization as well as the has_projects variable set to true

For github_repository_file resources

  • File resources require an (already existing) main branch, or an explicitly defined branch for the files.branch variable to avoid errors

  • File resources expect a string for the files.content variable. Use the file function if file data is not available as a Terraform-variable already

  • File resources that are removed from Terraform will also be removed from the Repository. This is visible in the Repository History

Author Information

This module is maintained by the contributors listed on GitHub.

Development of this module was sponsored by Operate Happy.

License

Licensed under the Apache License, Version 2.0 (the "License").

You may obtain a copy of the License at apache.org/licenses/LICENSE-2.0.

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" basis, without WARRANTIES or conditions of any kind, either express or implied.

See the License for the specific language governing permissions and limitations under the License.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap