-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepos-other.tf
48 lines (39 loc) · 959 Bytes
/
repos-other.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module "repo_proclaim" {
source = "./modules/repo"
name = "proclaim"
description = "🚧 A Kubernetes controller and CRD that publishes DNS-SD records."
languages = ["go"]
workflow = "go+dns"
copyright = {
since = 2022
}
}
module "repo_dotgithub" {
source = "./modules/repo"
name = ".github"
description = "Dogmatiq community health files."
languages = []
copyright = {
since = 2019
}
}
resource "github_repository" "website" {
archive_on_destroy = true
name = "dogmatiq.github.io"
description = "The Dogmatiq website."
homepage_url = "https://dogmatiq.io"
has_issues = true
has_projects = false
has_wiki = false
delete_branch_on_merge = true
allow_merge_commit = true
allow_squash_merge = false
allow_rebase_merge = false
vulnerability_alerts = true
pages {
cname = "dogmatiq.io"
source {
branch = "main"
}
}
}