forgejo-terraform-provider/examples/provider/provider.tf
ThreadCrux d842c3e093 version-update in docs and examples (#92)
Update version to release version across supporting files/documentation as lazy users, such as myself, love copying and pasting from these.

Note these docs are also displayed on Terraform/OpenTofu documents and should be kept in cadence with release versions.

Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/92
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com>
Co-authored-by: ThreadCrux <threadcrux@noreply.gitea.com>
Co-committed-by: ThreadCrux <threadcrux@noreply.gitea.com>
2025-01-23 02:36:12 +00:00

24 lines
No EOL
812 B
HCL

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 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
}