mirror of
https://gitlab.sarex.io/infra/terraform-contour-mirror.git
synced 2026-08-06 02:31:35 +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
22 lines
583 B
HCL
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
|
|
}
|