Go to file
Tobias Trabelsi bc28fe186f
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is failing Details
Merge pull request #37 from yamadayutaka/feature/team_repositories
implement repositories attribute to gitea_team
2023-05-17 09:48:10 +02:00
.github Bump crazy-max/ghaction-import-gpg from 5.2.0 to 5.3.0 2023-05-08 21:01:02 +00:00
docs Bump the version from 0.12.3 to 0.13.0 2023-05-16 07:58:50 +00:00
examples Bump the version from 0.12.3 to 0.13.0 2023-05-16 07:58:50 +00:00
gitea transparent errors 2023-05-17 09:34:11 +02:00
scripts warn about server side hooks 2022-08-30 21:02:06 +02:00
tools add docs using tfplugindocs 2022-04-03 09:36:14 +05:30
vendor Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.0 to 2.26.1 2023-03-27 21:02:54 +00:00
.drone.yml try to publish sbom with next release 2022-12-24 18:37:41 +01:00
.gitignore added repository resource and moved repo 2022-06-04 17:17:08 +02:00
.goreleaser.yml try to publish sbom with next release 2022-12-24 18:37:41 +01:00
CODE_OF_CONDUCT.md added CoC and issue templates for github 2022-08-17 22:16:07 +02:00
LICENSE added MIT license 2022-06-25 22:00:22 +02:00
Makefile Bump the version from 0.12.3 to 0.13.0 2023-05-16 07:58:50 +00:00
README.md Bump the version from 0.12.3 to 0.13.0 2023-05-16 07:58:50 +00:00
go.mod #26 document codeberg not allowing pull mirrors 2023-04-21 13:23:18 +02:00
go.sum Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.26.0 to 2.26.1 2023-03-27 21:02:54 +00:00
main.go updated GHA 2022-08-06 16:21:18 +02:00
terraform-registry-manifest.json add registry manifest json 2022-04-03 23:52:29 +05:30

README.md

terraform-provider-gitea

Terraform Gitea Provider

Build Status

History

This is a fork of https://gitea.com/gitea/terraform-provider-gitea. Many thanks for the foundation of this provider

Usage

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

terraform {
  required_providers {
    gitea = {
      source = "Lerentis/gitea"
      version = "0.13.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"
}

Contributing

This repo is a mirror of uploadfilter24.eu, where i mostly develop. PRs will be manually merged on the gitea instance as keeping these two repositories in sync can be very error prune.