terraform-provider-gitea/docs/resources/team.md
lerentis 7ba385d44a propose features upstream (#2)
Hi @techknowlogick 👋

as discussed on twitter the changes i made on my fork 😃

not sure if you are aware of this but currently hashicorp only allows publishing via github, so if you want to publish this provider to the terraform registry as well, feel free to also take a look at my goreleaser config and drone/github actions usage her: https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea

Co-authored-by: Tobias Trabelsi <lerentis@uploadfilter24.eu>
Reviewed-on: #2
Co-authored-by: lerentis <lerentis@noreply.gitea.io>
Co-committed-by: lerentis <lerentis@noreply.gitea.io>
2022-08-22 23:54:13 +08:00

1.8 KiB

page_title subcategory description
gitea_team Resource - terraform-provider-gitea gitea_team manages Team that are part of an organisation.

gitea_team (Resource)

gitea_team manages Team that are part of an organisation.

Example Usage

resource "gitea_org" "test_org" {
  name = "test-org"
}

resource "gitea_user" "test" {
  username             = "test"
  login_name           = "test"
  password             = "Geheim1!"
  email                = "test@user.dev"
  must_change_password = false
  admin                = true
}


resource "gitea_team" "test_team" {
  name         = "Devs"
  organisation = gitea_org.test_org.name
  description  = "Devs of Test Org"
  permission   = "write"
  members      = [gitea_user.test.username]
}

Schema

Required

  • name (String) Name of the Team
  • organisation (String) The organisation which this Team is part of.

Optional

  • can_create_repos (Boolean) Flag if the Teams members should be able to create Rpositories in the Organisation
  • description (String) Description of the Team
  • include_all_repositories (Boolean) Flag if the Teams members should have access to all Repositories in the Organisation
  • members (List of String) List of Users that should be part of this team
  • permission (String) Permissions associated with this Team Can be none, read, write, admin or owner
  • units (String) List of types of Repositories that should be allowed to be created from Team members. Can be repo.code, repo.issues, repo.ext_issues, repo.wiki, repo.pulls, repo.releases, repo.projects and/or repo.ext_wiki

Read-Only

  • id (String) The ID of this resource.