-
Notifications
You must be signed in to change notification settings - Fork 0
/
repos.tf
43 lines (36 loc) · 1.02 KB
/
repos.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
# this repo
resource "github_repository" "labels" {
name = "labels"
description = "Label configuration storage for the domicileapp org."
vulnerability_alerts = true
visibility = "public"
has_issues = true
has_discussions = false
has_projects = false
has_wiki = false
}
resource "github_repository" "domicile" {
name = "domicile"
description = "An application to help those with executive dysfunction manage household tasks, inventories, and life."
homepage_url = "https://domicile.patrickblack.dev/"
topics = [
"management",
"self-improvement",
"todo-app",
]
# pages {
# build_type = "workflow"
# cname = "domicile.patrickblack.dev"
# source {
# branch = "next"
# path = "/"
# }
# }
vulnerability_alerts = true
visibility = "public"
allow_auto_merge = true
has_issues = true
has_discussions = true
has_projects = true
has_wiki = false
}