Terraform Gitea Provider
Go to file
Renovate Bot 39b6dc1a2e fix(deps): update module code.gitea.io/sdk/gitea to v0.16.0 (#16)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| code.gitea.io/sdk/gitea | require | minor | `v0.15.1` -> `v0.16.0` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi43OS4xIiwidXBkYXRlZEluVmVyIjoiMzYuNzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/16
Co-authored-by: Renovate Bot <renovate-bot@gitea.com>
Co-committed-by: Renovate Bot <renovate-bot@gitea.com>
2023-09-07 21:44:43 +00:00
.gitea/workflows Add ci (#8) 2023-04-19 14:35:42 +08:00
.github fix gh action 2023-09-05 21:54:45 -04:00
docs lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
examples lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
gitea lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
scripts Initial commit 2022-03-31 17:24:00 -04:00
tools lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
.gitignore lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
.goreleaser.yaml add goreleaser 2023-03-31 14:09:43 -04:00
LICENSE lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
Makefile lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
README.md lerentis's changes (#12) 2023-09-06 01:44:01 +00:00
go.mod fix(deps): update module code.gitea.io/sdk/gitea to v0.16.0 (#16) 2023-09-07 21:44:43 +00:00
go.sum fix(deps): update module code.gitea.io/sdk/gitea to v0.16.0 (#16) 2023-09-07 21:44:43 +00:00
main.go lerentis's changes (#12) 2023-09-06 01:44:01 +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

README.md

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.2.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!