mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-06 02:31:35 +03:00
13 lines
364 B
HCL
13 lines
364 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)
|
|
}))
|
|
}
|