generated from terraform-yacloud-modules/terraform-yandex-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
45 lines (37 loc) · 1.53 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
output "bucket_name" {
description = "The name of the bucket."
value = yandex_storage_bucket.this.id
}
output "bucket_domain_name" {
description = "The bucket domain name."
value = yandex_storage_bucket.this.bucket_domain_name
}
output "website_endpoint" {
description = "The website endpoint."
value = yandex_storage_bucket.this.website_endpoint
}
output "website_domain" {
description = "The domain of the website endpoint."
value = yandex_storage_bucket.this.website_domain
}
output "storage_admin_service_account_id" {
description = "Service account ID of the Object storage admin."
value = try(yandex_iam_service_account.storage_admin[0].id, null)
}
output "storage_admin_access_key" {
description = "Static access key of the autogenerated Object storage admin service account."
value = try(yandex_iam_service_account_static_access_key.storage_admin[0].access_key, null)
}
output "storage_admin_secret_key" {
description = "Static secret key of the autogenerated Object storage admin service account."
sensitive = true
value = try(yandex_iam_service_account_static_access_key.storage_admin[0].secret_key, null)
}
output "kms_master_key_id" {
description = "The KMS master key ID used for the server-side encryption."
value = try(yandex_kms_symmetric_key.this[0].id, null)
}
output "cm_certificate_id" {
description = "Certificate ID of the generated HTTPS certificate in Yandex Cloud Certificate Manager"
value = try(yandex_cm_certificate.this[0].id, null)
}