mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-06 10:41: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)
22 lines
582 B
HCL
22 lines
582 B
HCL
output "bucket_name" {
|
|
description = "Name of the created bucket"
|
|
value = yandex_storage_bucket.this.bucket
|
|
}
|
|
|
|
output "access_key" {
|
|
description = "Access key for S3 bucket"
|
|
value = yandex_iam_service_account_static_access_key.sa_key.access_key
|
|
sensitive = true
|
|
}
|
|
|
|
output "secret_key" {
|
|
description = "Secret key for S3 bucket"
|
|
value = yandex_iam_service_account_static_access_key.sa_key.secret_key
|
|
sensitive = true
|
|
}
|
|
|
|
output "service_account_id" {
|
|
description = "ID of the service account"
|
|
value = yandex_iam_service_account.sa.id
|
|
}
|