Forgejo terraform provider. Fork from https://gitea.com/gitea/terraform-provider-gitea
Find a file
ThreadCrux d842c3e093 version-update in docs and examples (#92)
Update version to release version across supporting files/documentation as lazy users, such as myself, love copying and pasting from these.

Note these docs are also displayed on Terraform/OpenTofu documents and should be kept in cadence with release versions.

Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/92
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com>
Co-authored-by: ThreadCrux <threadcrux@noreply.gitea.com>
Co-committed-by: ThreadCrux <threadcrux@noreply.gitea.com>
2025-01-23 02:36:12 +00:00
.gitea/workflows feat: add branch_protection resource (#72) 2024-09-11 17:32:48 +00:00
.github lock to version 1 of goreleaser 2024-09-18 14:46:56 -04:00
docs version-update in docs and examples (#92) 2025-01-23 02:36:12 +00:00
examples version-update in docs and examples (#92) 2025-01-23 02:36:12 +00:00
gitea feat/variables (#88) 2025-01-10 18:29:37 +00:00
scripts chore(deps): update gitea/gitea docker tag to v1.23.1 (#86) 2025-01-10 17:55:01 +00:00
tests version-update in docs and examples (#92) 2025-01-23 02:36:12 +00:00
tools lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
.gitignore feat: add branch_protection resource (#72) 2024-09-11 17:32:48 +00:00
.goreleaser.yaml add goreleaser 2023-03-31 14:09:43 -04:00
go.mod feat/variables (#88) 2025-01-10 18:29:37 +00:00
go.sum feat/variables (#88) 2025-01-10 18:29:37 +00:00
LICENSE lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
main.go lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
Makefile readding install command (#14) 2023-09-07 21:47:00 +00:00
README.md version-update in docs and examples (#92) 2025-01-23 02:36:12 +00:00
renovate.json5 Configure Renovate (#15) 2023-09-07 21:40:26 +00:00
terraform-registry-manifest.json Add 'terraform-registry-manifest.json' 2023-03-31 03:57:18 +08:00

terraform-provider-gitea

Terraform Gitea Provider

This repo is mirrored from https://gitea.com/gitea/terraform-provider-gitea please send all issues and pull requests there.

Usage

This is not a 1.0 release, so usage is subject to change!

terraform {
  required_providers {
    gitea = {
      source = "go-gitea/gitea"
      version = "0.6.0"
    }
  }
}

provider "gitea" {
  base_url = var.gitea_url # optionally use GITEA_BASE_URL env var
  token    = var.gitea_token # optionally use GITEA_TOKEN env var

  # Username/Password authentication is mutally exclusive with token authentication
  # username = var.username # optionally use GITEA_USERNAME env var
  # password = var.password # optionally use GITEA_PASSWORD env var

  # A file containing the ca certificate to use in case ssl certificate is not from a standard chain
  cacert_file = var.cacert_file 
  
  # If you are running a gitea instance with self signed TLS certificates
  # and you want to disable certificate validation you can deactivate it with this flag
  insecure = false 
}

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_org" "test_org" {
  name = "test-org"
}

resource "gitea_repository" "org_repo" {
  username = gitea_org.test_org.name
  name = "org-test-repo"
}

License

This project is licensed under the MIT License - see the LICENSE file for details.

History

This codebase was created at https://gitea.com/gitea/terraform-provider-gitea, was forked by @lerentis, and then their changes were merged back into the original repo. Thank you to everyone who contributed!