terraform-contour-mirror/modules/k8s-secret/outputs.tf
kochetkov.s be34bc617b refactor: Use unified infrastructure.yaml config file
- Add infrastructure.yaml as single source of truth (like values.yaml in Helm)
- Make all modules universal (no hardcoded entity names)
- Use existing PostgreSQL cluster instead of creating new one
- Add yc-database module for working with existing PostgreSQL
- Add k8s-secret module with lifecycle.ignore_changes support
- Update terragrunt.hcl files to read from infrastructure.yaml
- Remove scripts, use native Terragrunt functions (yamldecode)
2026-01-19 15:28:39 +03:00

10 lines
265 B
HCL

output "secret_name" {
description = "Имя созданного секрета"
value = kubernetes_secret.this.metadata[0].name
}
output "secret_id" {
description = "ID созданного секрета"
value = kubernetes_secret.this.id
}