terraform-provider-gitea/examples/provider.tf
Tobias Trabelsi c183098b7d
All checks were successful
continuous-integration/drone/push Build is passing
fixed faulty import of repository
2022-08-17 21:58:02 +02:00

13 lines
210 B
HCL

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