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>
15 lines
252 B
HCL
15 lines
252 B
HCL
terraform {
|
|
required_providers {
|
|
gitea = {
|
|
source = "go-gitea/gitea"
|
|
version = "0.6.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "gitea" {
|
|
base_url = var.gitea_url
|
|
username = "lerentis"
|
|
password = var.gitea_password
|
|
#token = var.gitea_token
|
|
}
|