infra/terraform/hydra-jobsets.tf
Vika d4203ef6b8
hydra-jobsets.tf: update canonical Kittybox source
Kittybox moved to Sourcehut. Update the flake URI and homepage URI to reflect that.
2022-05-12 23:40:12 +03:00

28 lines
690 B
HCL

resource "hydra_project" "kittybox" {
name = "kittybox"
display_name = "Kittybox"
description = "The IndieWeb blogging solution"
homepage = "https://sr.ht/~vikanezrimaya/kittybox"
owner = "admin"
enabled = true
visible = true
}
resource "hydra_jobset" "kittybox" {
project = hydra_project.kittybox.name
state = "enabled"
visible = true
name = "main"
type = "flake"
description = "main branch"
flake_uri = "git+https://git.sr.ht/~vikanezrimaya/kittybox?ref=main"
check_interval = 300
scheduling_shares = 3000
keep_evaluations = 3
email_notifications = false
#email_override = ""
}