Pim Kunis 91172351d7 update provider example (#5)
Needed to change this to make the provider work

Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/5
Co-authored-by: Pim Kunis <pim@kunis.nl>
Co-committed-by: Pim Kunis <pim@kunis.nl>
2023-04-19 00:15:45 +08:00

25 lines
813 B
HCL

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