add forgejo worker
Some checks failed
Trunk Check / Trunk Check Runner (push) Failing after 1s

This commit is contained in:
Greyscale 2024-10-02 20:07:47 +02:00
parent 661aa57a3c
commit 77c62c0605

12
forgejo-worker.tf Normal file
View file

@ -0,0 +1,12 @@
module "forgejo_runner" {
source = "github.com/matthewbaggett/terraform_modules//docker-gitea-actions-runner"
providers = { docker = docker.nas }
parallelism = 12
gitea_runner_name = "california"
gitea_runner_labels = []
gitea_instance_url = "https://code.techinc.nl"
gitea_token = "7U8XD8IXZokT18smTZhb7P1xeKRVU9MRiPjWEOwN"
stack_name = "code"
service_name = "forgejo-runner"
placement_constraints = ["node.hostname == california"]
}