mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-01 01:18:12 +00:00
5.1 KiB
5.1 KiB
page_title | subcategory | description |
---|---|---|
gitea_repository Resource - terraform-provider-gitea | gitea_repository manages a gitea repository. Per default this repository will be initializiled with the provided configuration (gitignore, License etc.). If the username property is set to a organisation name, the provider will try to look if this organisation exists and create the repository under the organisation scope. Repository migrations have some properties that are not available to regular repositories. These are all prefixed with migration_. Codeberg.org does currently not allow mirrors to be created. See FAQ Section of CodeBerg for more information: https://docs.codeberg.org/getting-started/faq/#why-am-i-not-allowed-to-set-up-an-automatic-mirror |
gitea_repository (Resource)
gitea_repository
manages a gitea repository.
Per default this repository will be initializiled with the provided configuration (gitignore, License etc.).
If the username
property is set to a organisation name, the provider will try to look if this organisation exists and create the repository under the organisation scope.
Repository migrations have some properties that are not available to regular repositories. These are all prefixed with migration_
.
Codeberg.org does currently not allow mirrors to be created. See FAQ Section of CodeBerg for more information: https://docs.codeberg.org/getting-started/faq/#why-am-i-not-allowed-to-set-up-an-automatic-mirror
Example Usage
resource "gitea_repository" "test" {
username = "lerentis"
name = "test"
private = true
issue_labels = "Default"
license = "MIT"
gitignores = "Go"
}
resource "gitea_repository" "mirror" {
username = "lerentis"
name = "terraform-provider-gitea-mirror"
description = "Mirror of Terraform Provider"
mirror = true
migration_clone_addresse = "https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git"
migration_service = "gitea"
migration_service_auth_token = var.gitea_mirror_token
}
resource "gitea_repository" "clone" {
username = "lerentis"
name = "terraform-provider-gitea-clone"
description = "Clone of Terraform Provider"
mirror = false
migration_clone_address = "https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git"
migration_service = "gitea"
migration_service_auth_token = var.gitea_clone_token
}
Schema
Required
name
(String) The Name of the repositoryusername
(String) The Owner of the repository
Optional
allow_manual_merge
(Boolean)allow_merge_commits
(Boolean)allow_rebase
(Boolean)allow_rebase_explicit
(Boolean)allow_squash_merge
(Boolean)archived
(Boolean)auto_init
(Boolean) Flag if the repository should be initiated with the configured valuesautodetect_manual_merge
(Boolean)default_branch
(String) The default branch of the repository. Defaults tomain
description
(String) The description of the repository.gitignores
(String) A specific gitignore that should be commited to the repositoryon creation ifauto_init
is set totrue
Need to exist in the gitea instancehas_issues
(Boolean) A flag if the repository should have issue management enabled or not.has_projects
(Boolean) A flag if the repository should have the native project management enabled or not.has_pull_requests
(Boolean) A flag if the repository should acceppt pull requests or not.has_wiki
(Boolean) A flag if the repository should have the native wiki enabled or not.ignore_whitespace_conflicts
(Boolean)issue_labels
(String) The Issue Label configuration to be used in this repository. Need to exist in the gitea instancelicense
(String) The license under which the source code of this repository should be. Need to exist in the gitea instancemigration_clone_address
(String)migration_clone_addresse
(String) DEPRECATED in favor ofmigration_clone_address
migration_issue_labels
(Boolean)migration_lfs
(Boolean)migration_lfs_endpoint
(String)migration_milestones
(Boolean)migration_mirror_interval
(String) valid time units are 'h', 'm', 's'. 0 to disable automatic syncmigration_releases
(Boolean)migration_service
(String) git/github/gitlab/gitea/gogsmigration_service_auth_password
(String, Sensitive)migration_service_auth_token
(String, Sensitive)migration_service_auth_username
(String)mirror
(Boolean)private
(Boolean) Flag if the repository should be private or not.readme
(String)repo_template
(Boolean)website
(String) A link to a website with more information.
Read-Only
clone_url
(String)created
(String)html_url
(String)id
(String) The ID of this resource.permission_admin
(Boolean)permission_pull
(Boolean)permission_push
(Boolean)ssh_url
(String)updated
(String)