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