-
Notifications
You must be signed in to change notification settings - Fork 4
/
repos.tf
52 lines (42 loc) · 1.19 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
44
45
46
47
48
49
50
51
52
resource "github_repository" "tf" {
name = "tf"
description = "Terraform resources to manage the organization"
homepage_url = "https://www.meetup.com/Joinville-Go-Meetup/"
has_issues = true
has_wiki = false
}
resource "github_branch_protection" "tf_master" {
repository = "tf"
branch = "master"
restrictions = {
users = [
"caarlos0",
]
}
required_pull_request_reviews = {
dismiss_stale_reviews = true
require_code_owner_reviews = true
}
}
resource "github_repository" "cfp" {
name = "cfp"
description = "Call for papers repository"
homepage_url = "https://www.meetup.com/Joinville-Go-Meetup/"
has_issues = true
has_wiki = false
}
resource "github_repository" "discussions" {
name = "discussions"
description = "Discussions about anything related to our community"
homepage_url = "https://www.meetup.com/Joinville-Go-Meetup/"
has_issues = true
has_wiki = false
auto_init = true
}
resource "github_repository" "presentations" {
name = "presentations"
description = ""
homepage_url = "https://www.meetup.com/Joinville-Go-Meetup/"
has_issues = true
has_wiki = false
}