forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
209 lines (197 loc) · 7.44 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
/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
format_obj = one([for k, v in var.format : v if v != null])
format_string = one([for k, v in var.format : k if v != null])
mode_string = one([for k, v in local.format_obj : k if v != null && v != false])
}
resource "google_artifact_registry_repository" "registry" {
provider = google-beta
project = var.project_id
location = var.location
description = var.description
format = upper(local.format_string)
labels = var.labels
repository_id = var.name
mode = "${upper(local.mode_string)}_REPOSITORY"
kms_key_name = var.encryption_key
cleanup_policy_dry_run = var.cleanup_policy_dry_run
dynamic "cleanup_policies" {
for_each = var.cleanup_policies == null ? {} : var.cleanup_policies
content {
id = cleanup_policies.key
action = cleanup_policies.value.action
dynamic "condition" {
for_each = (cleanup_policies.value.condition != null) ? [""] : []
content {
tag_state = cleanup_policies.value.condition.tag_state
tag_prefixes = cleanup_policies.value.condition.tag_prefixes
version_name_prefixes = cleanup_policies.value.condition.version_name_prefixes
package_name_prefixes = cleanup_policies.value.condition.package_name_prefixes
newer_than = cleanup_policies.value.condition.newer_than
older_than = cleanup_policies.value.condition.older_than
}
}
dynamic "most_recent_versions" {
for_each = (cleanup_policies.value.most_recent_versions != null) ? [""] : []
content {
package_name_prefixes = cleanup_policies.value.most_recent_versions.package_name_prefixes
keep_count = cleanup_policies.value.most_recent_versions.keep_count
}
}
}
}
dynamic "docker_config" {
# TODO: open a bug on the provider for this permadiff
for_each = (
local.format_string == "docker" && try(local.format_obj.standard.immutable_tags, null) == true
? [""] : []
)
content {
immutable_tags = local.format_obj.standard.immutable_tags
}
}
dynamic "maven_config" {
for_each = local.format_string == "maven" ? [""] : []
content {
allow_snapshot_overwrites = try(local.format_obj.standard.allow_snapshot_overwrites, null)
version_policy = try(local.format_obj.standard.version_policy, null)
}
}
dynamic "remote_repository_config" {
for_each = local.mode_string == "remote" ? [""] : []
content {
disable_upstream_validation = local.format_obj.remote.disable_upstream_validation
dynamic "upstream_credentials" {
for_each = local.format_obj.remote.upstream_credentials != null ? [""] : []
content {
username_password_credentials {
username = local.format_obj.remote.upstream_credentials.username
password_secret_version = local.format_obj.remote.upstream_credentials.password_secret_version
}
}
}
dynamic "apt_repository" {
for_each = local.format_string == "apt" ? [""] : []
content {
public_repository {
repository_base = split(" ", local.format_obj.remote.public_repository)[0]
repository_path = split(" ", local.format_obj.remote.public_repository)[1]
}
# dynamic "custom_repository" {
# for_each = local.format_obj.remote.custom_repository != null ? [""] : []
# content {
# uri = local.format_obj.remote.custom_repository
# }
# }
}
}
dynamic "docker_repository" {
for_each = local.format_string == "docker" ? [""] : []
content {
public_repository = local.format_obj.remote.public_repository
dynamic "custom_repository" {
for_each = local.format_obj.remote.custom_repository != null ? [""] : []
content {
uri = local.format_obj.remote.custom_repository
}
}
}
}
dynamic "maven_repository" {
for_each = local.format_string == "maven" ? [""] : []
content {
public_repository = local.format_obj.remote.public_repository
dynamic "custom_repository" {
for_each = local.format_obj.remote.custom_repository != null ? [""] : []
content {
uri = local.format_obj.remote.custom_repository
}
}
}
}
dynamic "npm_repository" {
for_each = local.format_string == "npm" ? [""] : []
content {
public_repository = local.format_obj.remote.public_repository
dynamic "custom_repository" {
for_each = local.format_obj.remote.custom_repository != null ? [""] : []
content {
uri = local.format_obj.remote.custom_repository
}
}
}
}
dynamic "python_repository" {
for_each = local.format_string == "python" ? [""] : []
content {
public_repository = local.format_obj.remote.public_repository
dynamic "custom_repository" {
for_each = local.format_obj.remote.custom_repository != null ? [""] : []
content {
uri = local.format_obj.remote.custom_repository
}
}
}
}
dynamic "yum_repository" {
for_each = local.format_string == "yum" ? [""] : []
content {
public_repository {
repository_base = split(" ", local.format_obj.remote.public_repository)[0]
repository_path = split(" ", local.format_obj.remote.public_repository)[1]
}
# dynamic "custom_repository" {
# for_each = local.format_obj.remote.custom_repository != null ? [""] : []
# content {
# uri = local.format_obj.remote.custom_repository
# }
# }
}
}
}
}
dynamic "virtual_repository_config" {
for_each = local.mode_string == "virtual" ? [""] : []
content {
dynamic "upstream_policies" {
for_each = local.format_obj.virtual
content {
id = upstream_policies.key
repository = upstream_policies.value.repository
priority = upstream_policies.value.priority
}
}
}
}
lifecycle {
precondition {
condition = local.mode_string != "remote" || contains(
["apt", "docker", "maven", "npm", "python", "yum"], local.format_string
)
error_message = "Invalid format for remote repository."
}
}
}
resource "google_artifact_registry_repository_iam_binding" "bindings" {
provider = google-beta
for_each = var.iam
project = var.project_id
location = google_artifact_registry_repository.registry.location
repository = google_artifact_registry_repository.registry.name
role = each.key
members = each.value
}