-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-repository.tf.sample
54 lines (45 loc) · 1.34 KB
/
template-repository.tf.sample
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
resource "github_repository" "example" {
name = "example"
description = "example"
visibility = "public"
auto_init = false
allow_merge_commit = false
delete_branch_on_merge = true
has_issues = true
topics = local.common_topics
lifecycle {
prevent_destroy = true
}
template {
owner = var.github_org
repository = "burendo-repo-template"
}
}
resource "github_team_repository" "example_burendo" {
repository = github_repository.example.name
team_id = github_team.burendo.id
permission = "push"
}
resource "github_team_repository" "example_admin" {
repository = github_repository.example.name
team_id = github_team.engineering.id
permission = "admin"
}
resource "github_branch_protection" "example_main" {
pattern = github_repository.example.default_branch
repository_id = github_repository.example.name
enforce_admins = true
required_status_checks {
strict = true
}
required_pull_request_reviews {
dismiss_stale_reviews = true
require_code_owner_reviews = true
}
}
resource "github_issue_label" "example" {
for_each = { for common_label in local.common_labels : common_label.name => common_label }
color = each.value.colour
name = each.value.name
repository = github_repository.example.name
}