-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.tf
300 lines (268 loc) · 8.92 KB
/
main.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
terraform {
backend "gcs" {
bucket = "mage-os-tf-state"
prefix = "terraform/state"
}
required_providers {
github = {
source = "integrations/github"
version = "~> 6.2"
}
}
}
provider "github" {
owner = var.organization_name
app_auth {
id = var.github_app_id
installation_id = var.github_app_installation_id
pem_file = var.github_app_pem_file
}
}
data "github_user" "mage-os-ci" {
username = "mage-os-ci"
}
# Test change
# Using exclusively github_team_membership properly sends invitation, but
# doesn't handle revoking organization membership. Someone can be a part of
# organization, but not belong to any team. Stating membership explicitly also
# makes transitions between administrators and normal members possible in
# single apply.
resource "github_membership" "users" {
for_each = toset(distinct(concat(
flatten([for team in var.teams : team.members]),
var.administrators,
)))
username = each.key
role = contains(var.administrators, each.key) ? "admin" : "member"
}
resource "github_team" "teams" {
for_each = var.teams
name = each.key
description = each.value.description
privacy = "closed"
}
resource "github_team_membership" "members" {
for_each = { for i in flatten([
for team_name, team in var.teams : [
for member in team.members : {
team = team_name
user = member
}
]
]) : "${i.user}_${i.team}" => i }
team_id = github_team.teams[each.value.team].id
username = each.value.user
# Administrators are automatically assigned maintainer role. Do it explicitly
# to avoid state discrepancy.
role = contains(
var.administrators, each.value.user
) ? "maintainer" : "member"
}
resource "github_repository" "mirrors" {
for_each = var.mirror_repositories
name = each.key
description = each.value.description
has_issues = false
has_projects = false
has_wiki = false
topics = try(each.value.topics, [])
lifecycle {
# Never try to replace repository in order to change its configuration.
prevent_destroy = true
}
}
resource "github_branch_protection" "mirrors" {
for_each = var.mirror_repositories
repository_id = github_repository.mirrors[each.key].node_id
pattern = "*"
enforce_admins = true
restrict_pushes {
blocks_creations = false
push_allowances = [data.github_user.mage-os-ci.node_id]
}
allows_force_pushes = true
}
resource "github_repository" "repositories" {
for_each = var.repositories
name = each.key
description = each.value.description
has_issues = true
has_projects = true
has_wiki = false
topics = try(each.value.topics, [])
auto_init = true
delete_branch_on_merge = true
homepage_url = try(each.value.homepage_url, "")
archived = try(each.value.archived, false)
lifecycle {
# Never try to replace repository in order to change its configuration.
prevent_destroy = true
}
}
resource "github_branch_protection" "repositories-release-please" {
for_each = { for key, value in var.repositories : key => value if try(value.release_please_branch, "") != "" }
repository_id = github_repository.repositories[each.key].node_id
pattern = each.value.release_please_branch
restrict_pushes {
blocks_creations = false
push_allowances = [data.github_user.mage-os-ci.node_id]
}
force_push_bypassers = [data.github_user.mage-os-ci.node_id]
}
resource "github_branch_protection" "repositories" {
for_each = { for key, value in var.repositories : key => value if try(value.archived, false) == false }
repository_id = github_repository.repositories[each.key].node_id
pattern = "*"
required_status_checks {
strict = true
contexts = []
}
required_pull_request_reviews {
require_code_owner_reviews = true
required_approving_review_count = 1
dismiss_stale_reviews = true
restrict_dismissals = true
dismissal_restrictions = [
github_team.teams["tech-lead"].node_id,
]
}
restrict_pushes {
push_allowances = try(each.value.is_part_of_monorepo, false) ? [data.github_user.mage-os-ci.node_id] : [for team in each.value.teams : github_team.teams[team].node_id]
}
}
resource "github_branch_default" "repositories" {
for_each = { for key, value in var.repositories : key => value if try(value.default_branch, "") != "" }
repository = github_repository.repositories[each.key].name
branch = each.value.default_branch
}
resource "github_team_repository" "teams" {
for_each = { for i in flatten([
for repository_name, repository in var.repositories : [
for team in try(repository.teams, []) : {
repository = repository_name
team = team
}
]
]) : "${i.repository}_${i.team}" => i }
team_id = github_team.teams[each.value.team].name
repository = github_repository.repositories[each.value.repository].name
permission = "push"
}
resource "github_team_repository" "tech-lead" {
for_each = var.repositories
team_id = github_team.teams["tech-lead"].id
repository = github_repository.repositories[each.key].name
permission = "maintain"
}
resource "github_repository_file" "codeowners" {
for_each = var.repositories
repository = github_repository.repositories[each.key].name
branch = github_repository.repositories[each.key].default_branch
file = "CODEOWNERS"
content = "* ${join(
" ",
formatlist("@${var.organization_name}/%s", try(each.value.teams, []))
)}"
commit_message = "Managed by Terraform"
commit_author = "mage-os-ci"
commit_email = "[email protected]"
overwrite_on_create = true
lifecycle {
ignore_changes = [
commit_author,
commit_email,
]
}
}
resource "github_repository_file" "merge-upstream-changes" {
for_each = {
for key, value in var.repositories : key => value
if startswith(key, "mageos-") && contains(keys(github_repository.mirrors), replace(key, "mageos-", "mirror-"))
}
repository = github_repository.repositories[each.key].name
branch = github_repository.repositories[each.key].default_branch
file = ".github/workflows/merge-upstream-changes.yml"
content = <<-EOT
on:
schedule:
- cron: "10 10 * * *" # This gives mirror sync, which runs at 9:57, some time to complete.
workflow_dispatch: {}
permissions:
contents: write
pull-requests: write
jobs:
merge-from-mirror:
uses: mage-os/infrastructure/.github/workflows/merge-upstream-changes.yml@main
with:
upstream: ${github_repository.mirrors[replace(each.key, "mageos-", "mirror-")].http_clone_url}
matrix: '{ branch: ["${github_repository.mirrors[replace(each.key, "mageos-", "mirror-")].default_branch}"] }'
secrets:
DISCORD_WEBHOOK: $${{ secrets.DISCORD_WEBHOOK }}
MAGEOS_GITHUB_TOKEN: $${{ secrets.MAGE_OS_CI_TOKEN }}
EOT
commit_message = "Managed by Terraform"
commit_author = "mage-os-ci"
commit_email = "[email protected]"
overwrite_on_create = true
lifecycle {
ignore_changes = [
commit_author,
commit_email,
]
}
}
resource "github_repository_file" "sansec_ecomscan_workflow" {
for_each = {
for k, v in var.repositories : k => v
if !github_repository.repositories[k].archived
}
repository = github_repository.repositories[each.key].name
branch = github_repository.repositories[each.key].default_branch
file = ".github/workflows/sansec-ecomscan.yml"
content = <<-EOT
name: Sansec eComscan Security Scan
on:
push:
pull_request_target:
workflow_dispatch:
jobs:
run-ecomscan:
# Skip if it's a push event on a PR (it can't access secrets)
if: github.event.pull_request == null || github.event_name != 'push'
name: Run Sansec eComscan
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: $${{ github.event.pull_request.head.sha }}
persist-credentials: false
- name: Download eComscan
run: wget https://ecomscan.com/downloads/linux-amd64/ecomscan
- name: Fix permissions
run: chmod +x ecomscan
- name: Run eComscan
env:
ECOMSCAN_KEY: $${{ secrets.SANSEC_LICENSE_KEY }}
run: |
output=$(./ecomscan --no-auto-update --skip-database --deep --format=csv .)
if [ -n "$output" ]; then
echo "Security issues found:"
echo "$output"
exit 1
fi
EOT
commit_message = "Add Sansec eComscan workflow"
commit_author = "mage-os-ci"
commit_email = "[email protected]"
overwrite_on_create = true
lifecycle {
ignore_changes = [
commit_author,
commit_email,
]
}
}