terraform-contour-mirror/modules/yc-s3/outputs.tf
kochetkov.s cd68e73e40 feat: Add Terraform infrastructure for pulse project
- 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
2026-01-19 15:15:14 +03:00

22 lines
583 B
HCL

output "bucket_name" {
description = "Name of the created bucket"
value = yandex_storage_bucket.pulse.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
}