feat(provider): add provider configuration

This commit is contained in:
Julien Dessaux 2025-05-07 09:58:11 +02:00
commit 95834c9ad9
Signed by: adyxax
GPG key ID: F92E51B86E07177E
20 changed files with 1167 additions and 0 deletions

View file

@ -0,0 +1,12 @@
terraform {
required_providers {
forgejo = {
source = "adyxax/forgejo"
}
}
}
provider "forgejo" {
api_token = var.forgejo_api_token
endpoint = "https://git.adyxax.org/"
}