terraform-provider-gitea/examples/provider.tf
Tobias Trabelsi a79db16011
Some checks failed
continuous-integration/drone/push Build is failing
added repository resource and moved repo
2022-06-04 17:17:08 +02:00

13 lines
210 B
HCL

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