terraformDummyRepo2/examples/provider.tf
Tobias Trabelsi 0d09d97866 bump version
2023-07-04 11:35:15 +02:00

15 lines
No EOL
268 B
HCL

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