Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/go-gitea/terraform-provider-gitea
Mirror of https://gitea.com/gitea/terraform-provider-gitea
https://github.com/go-gitea/terraform-provider-gitea
gitea terraform terraform-provider
Last synced: 3 months ago
JSON representation
Mirror of https://gitea.com/gitea/terraform-provider-gitea
- Host: GitHub
- URL: https://github.com/go-gitea/terraform-provider-gitea
- Owner: go-gitea
- License: mit
- Created: 2023-03-30T19:49:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T18:47:30.000Z (4 months ago)
- Last Synced: 2024-10-30T00:54:43.893Z (3 months ago)
- Topics: gitea, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/go-gitea/gitea/latest
- Size: 168 KB
- Stars: 16
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
terraform {
required_providers {
gitea = {
source = "go-gitea/gitea"
version = "0.3.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](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!