mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-05 18:31:00 +03:00
- Add modules: yc-s3, yc-postgresql, k8s-namespace, k8s-secrets - Add live configuration for stage environment - Add GitLab CI with downstream pipelines - Implement best practices from theory.md
15 lines
425 B
HCL
15 lines
425 B
HCL
output "dockerhub_secret_name" {
|
|
description = "Name of the dockerhub secret"
|
|
value = kubernetes_secret.dockerhub.metadata[0].name
|
|
}
|
|
|
|
output "s3_secret_name" {
|
|
description = "Name of the S3 secret"
|
|
value = kubernetes_secret.pulse_s3.metadata[0].name
|
|
}
|
|
|
|
output "postgresql_secret_name" {
|
|
description = "Name of the PostgreSQL secret"
|
|
value = kubernetes_secret.pulse_postgresql.metadata[0].name
|
|
}
|