mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-10-31 17:18:11 +00:00
1.4 KiB
1.4 KiB
page_title | subcategory | description |
---|---|---|
gitea_org Resource - terraform-provider-gitea | gitea_org manages a gitea organisation. Organisations are a way to group repositories and abstract permission management in a gitea instance. |
gitea_org (Resource)
gitea_org
manages a gitea organisation.
Organisations are a way to group repositories and abstract permission management in a gitea instance.
Example Usage
resource "gitea_org" "test_org" {
name = "test-org"
}
resource "gitea_repository" "org_repo" {
username = gitea_org.test_org.name
name = "org-test-repo"
}
Schema
Required
name
(String) The name of the organisation without spaces.
Optional
description
(String) A description of this organisation.full_name
(String) The display name of the organisation. Defaults to the value ofname
.location
(String)repo_admin_change_team_access
(Boolean)visibility
(String) Flag is this organisation should be publicly visible or not.website
(String) A link to a website with more information about this organisation.
Read-Only
avatar_url
(String)id
(String) The ID of this resource.repos
(List of String) List of all Repositories that are part of this organisation