2022-04-03 04:06:54 +00:00
|
|
|
---
|
|
|
|
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
|
|
|
page_title: "gitea Provider"
|
|
|
|
subcategory: ""
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
# gitea Provider
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-06-12 15:49:33 +00:00
|
|
|
## Example Usage
|
|
|
|
|
|
|
|
```terraform
|
|
|
|
terraform {
|
|
|
|
required_providers {
|
|
|
|
gitea = {
|
|
|
|
source = "Lerentis/gitea"
|
2022-10-05 19:22:30 +00:00
|
|
|
version = "0.9.0"
|
2022-06-12 15:49:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
```
|
2022-04-03 04:06:54 +00:00
|
|
|
|
|
|
|
<!-- schema generated by tfplugindocs -->
|
|
|
|
## Schema
|
|
|
|
|
|
|
|
### Optional
|
|
|
|
|
|
|
|
- `base_url` (String) The Gitea Base API URL
|
|
|
|
- `cacert_file` (String) A file containing the ca certificate to use in case ssl certificate is not from a standard chain
|
|
|
|
- `insecure` (Boolean) Disable SSL verification of API calls
|
|
|
|
- `password` (String) Password in case of using basic auth
|
|
|
|
- `token` (String) The application token used to connect to Gitea.
|
|
|
|
- `username` (String) Username in case of using basic auth
|