terraform-contour-mirror/modules/yc-s3/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

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
}