8f33d9c562
- add modules - add config - add environments - add .gitignore - add makefile Wire up config.hcl, variables, and terragrunt inputs for all new types.
132 lines
3.7 KiB
Terraform
132 lines
3.7 KiB
Terraform
variable "remote_alpine" {
|
|
description = "Map of Alpine remote repositories"
|
|
type = map(object({
|
|
base_url = string
|
|
description = optional(string, "")
|
|
immutable_ttl = optional(number, 0)
|
|
mutable_ttl = optional(number, 7200)
|
|
immutable_patterns = optional(list(string), [])
|
|
mutable_patterns = optional(list(string), [])
|
|
stale_on_error = optional(bool, true)
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "remote_docker" {
|
|
description = "Map of Docker remote repositories"
|
|
type = map(object({
|
|
base_url = string
|
|
description = optional(string, "")
|
|
immutable_ttl = optional(number, 0)
|
|
mutable_ttl = optional(number, 300)
|
|
patterns = optional(list(string), [])
|
|
mutable_patterns = optional(list(string), [])
|
|
stale_on_error = optional(bool, true)
|
|
ban_tags_enabled = optional(bool, false)
|
|
ban_tags = optional(list(string), [])
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "remote_generic" {
|
|
description = "Map of generic remote repositories"
|
|
type = map(object({
|
|
base_url = string
|
|
description = optional(string, "")
|
|
immutable_ttl = optional(number, 0)
|
|
mutable_ttl = optional(number, 7200)
|
|
patterns = optional(list(string), [])
|
|
mutable_patterns = optional(list(string), [])
|
|
stale_on_error = optional(bool, true)
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "remote_goproxy" {
|
|
description = "Map of Go module proxy remote repositories"
|
|
type = map(object({
|
|
base_url = string
|
|
description = optional(string, "")
|
|
immutable_ttl = optional(number, 0)
|
|
mutable_ttl = optional(number, 300)
|
|
stale_on_error = optional(bool, true)
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "remote_helm" {
|
|
description = "Map of Helm chart remote repositories"
|
|
type = map(object({
|
|
base_url = string
|
|
description = optional(string, "")
|
|
immutable_ttl = optional(number, 0)
|
|
mutable_ttl = optional(number, 3600)
|
|
check_mutable = optional(bool, true)
|
|
immutable_patterns = optional(list(string), [])
|
|
stale_on_error = optional(bool, true)
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "remote_rpm" {
|
|
description = "Map of RPM remote repositories"
|
|
type = map(object({
|
|
base_url = string
|
|
description = optional(string, "")
|
|
immutable_ttl = optional(number, 0)
|
|
mutable_ttl = optional(number, 7200)
|
|
immutable_patterns = optional(list(string), [])
|
|
mutable_patterns = optional(list(string), [])
|
|
stale_on_error = optional(bool, true)
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "remote_pypi" {
|
|
description = "Map of PyPI remote repositories"
|
|
type = map(object({
|
|
base_url = string
|
|
description = optional(string, "")
|
|
immutable_ttl = optional(number, 0)
|
|
mutable_ttl = optional(number, 3600)
|
|
patterns = optional(list(string), [])
|
|
mutable_patterns = optional(list(string), [])
|
|
stale_on_error = optional(bool, true)
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "local_pypi" {
|
|
description = "Map of local PyPI repositories"
|
|
type = map(object({
|
|
description = optional(string, "")
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "local_rpm" {
|
|
description = "Map of local RPM repositories"
|
|
type = map(object({
|
|
description = optional(string, "")
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "local_terraform" {
|
|
description = "Map of local Terraform repositories"
|
|
type = map(object({
|
|
description = optional(string, "")
|
|
}))
|
|
default = {}
|
|
}
|
|
|
|
variable "virtual" {
|
|
description = "Map of virtual repositories"
|
|
type = map(object({
|
|
package_type = string
|
|
description = optional(string, "")
|
|
members = list(string)
|
|
}))
|
|
default = {}
|
|
}
|