-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocals.tf
86 lines (68 loc) · 2.28 KB
/
locals.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
locals {
repo = {
"osc-terraform-tfe" = {
description = "os.c terraform automations"
name = "osc-terraform-tfe"
owner = var.owner
gitignore_template = "Terraform"
vulnerability_alerts = true
topics = ["terraform"]
visibility = "public"
has_issues = true
teams = { "devops" : "maintain" }
}
"osc-terraform-github" = {
description = "os.c github automations"
name = "osc-terraform-github"
owner = var.owner
gitignore_template = "Terraform"
topics = ["terraform", "github"]
vulnerability_alerts = true
visibility = "public"
has_issues = true
teams = { "devops" : "maintain" }
}
"osc-terraform-cloudflare-dns" = {
description = "os.c cloudflare dns automations"
name = "osc-terraform-cloudflare-dns"
owner = var.owner
gitignore_template = "Terraform"
topics = ["terraform", "cloudflare"]
vulnerability_alerts = true
visibility = "public"
has_issues = true
teams = { "devops" : "maintain" }
}
"website" = {
description = "os.c website, content and design components"
name = "website"
owner = var.owner
gitignore_template = "Node"
topics = ["opensource", "nextjs", "react", "storybook"]
vulnerability_alerts = true
visibility = "public"
has_issues = true
has_discussions = true
license_template = "mit"
teams = { "web" : "maintain" }
homepage_url = "https://opensource.construction"
enable_pages = true
pages_branch = "main"
pages_cname = "design.opensource.construction"
pages_path = "/"
}
"answer" = {
description = "apache answer for os.c"
name = "answer"
owner = var.owner
topics = ["opensource", "apache-answer", "docker"]
vulnerability_alerts = true
visibility = "public"
has_issues = true
has_discussions = true
license_template = "apache-2.0"
teams = { "web" : "maintain" }
homepage_url = "https://answer.opensource.construction"
}
}
}