terraform-provider-gitea/examples/provider.tf
Tobias Trabelsi 24357370bc
Some checks reported errors
continuous-integration/drone/push Build was killed
fixed handling of vanished resources
added support for organisations
2022-06-12 15:35:01 +02:00

13 lines
210 B
HCL

terraform {
required_providers {
gitea = {
source = "terraform.local/lerentis/gitea"
version = "0.3.0"
}
}
}
provider "gitea" {
base_url = var.gitea_url
token = var.gitea_token
}