terraform-provider-gitea/examples/provider.tf
Tobias Trabelsi 13d3ed85ad
All checks were successful
continuous-integration/drone/push Build is passing
removed unintuitive fallback if repo owner does not exist
2022-11-12 20:56:48 +01:00

15 lines
268 B
HCL

terraform {
required_providers {
gitea = {
source = "terraform.local/lerentis/gitea"
version = "0.11.1"
}
}
}
provider "gitea" {
base_url = var.gitea_url
username = "lerentis"
password = var.gitea_password
#token = var.gitea_token
}