variable "secret_name" { description = "Имя секрета" type = string } variable "namespace" { description = "Kubernetes namespace" type = string } variable "secret_type" { description = "Тип секрета (Opaque, kubernetes.io/dockerconfigjson, etc.)" type = string default = "Opaque" } variable "data" { description = "Данные секрета (map строк)" type = map(string) } variable "labels" { description = "Labels для секрета" type = map(string) default = {} } variable "annotations" { description = "Annotations для секрета" type = map(string) default = {} } variable "ignore_changes" { description = "Игнорировать изменения после создания (не перезаписывать)" type = bool default = false }