Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

go-gitea/terraform-provider-gitea

Repository files navigation

Terraform Gitea Provider

This repo is mirrored fromhttps://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 vartoken=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 chaincacert_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 flaginsecure=false }resource"gitea_repository""test" {username="lerentis"name="test"private=trueissue_labels="Default"license="MIT"gitignores="Go"}resource"gitea_repository""mirror" {username="lerentis"name="terraform-provider-gitea-mirror"description="Mirror of Terraform Provider"mirror=truemigration_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.namename="org-test-repo"}

License

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

History

This codebase was created athttps://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!


[8]ページ先頭

©2009-2025 Movatter.jp