mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-05 18:31:00 +03:00
13 lines
370 B
HCL
13 lines
370 B
HCL
variable "secrets" {
|
|
description = "Список секретов для создания"
|
|
type = list(object({
|
|
name = string
|
|
namespace = string
|
|
secret_type = string
|
|
data = map(string)
|
|
labels = optional(map(string))
|
|
annotations = optional(map(string))
|
|
ignore_changes = optional(bool, false)
|
|
}))
|
|
}
|