* wip * project factory providers * working example * copyright, tfdoc * rewording * rewording * tfdoc * tfdoc * tfdoc again * fix tests * tests
60 lines
1.8 KiB
HCL
60 lines
1.8 KiB
HCL
/**
|
|
* Copyright 2025 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.
|
|
*/
|
|
|
|
variable "apt_remote_registries" {
|
|
description = "Remote artifact registry configurations."
|
|
type = list(object({
|
|
path = string
|
|
writer_principals = optional(list(string), [])
|
|
}))
|
|
nullable = false
|
|
default = [
|
|
{ path = "DEBIAN debian/dists/bookworm" },
|
|
{ path = "DEBIAN debian-security/dists/bookworm-security" }
|
|
]
|
|
validation {
|
|
condition = alltrue([
|
|
for v in var.apt_remote_registries : length(split(" ", v.path)) == 2
|
|
])
|
|
error_message = "Invalid registry path: format is [BASE] [path]."
|
|
}
|
|
validation {
|
|
condition = alltrue([
|
|
for v in var.apt_remote_registries :
|
|
contains(["DEBIAN", "UBUNTU"], element(split(" ", v.path), 0))
|
|
])
|
|
error_message = "Invalid registry base: only 'DEBIAN' and 'UBUNTU' are supported."
|
|
}
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Region where the registries will be created."
|
|
type = string
|
|
default = "europe-west8"
|
|
}
|
|
|
|
variable "name" {
|
|
description = "Prefix used for all resource names."
|
|
type = string
|
|
nullable = true
|
|
default = "apt-remote"
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "Project id where the registries will be created."
|
|
type = string
|
|
}
|