forked from kzzzr/airbyte_lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
32 lines (28 loc) · 1006 Bytes
/
variables.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
variable "folder_id" {
description = "Folder ID"
type = string
}
variable "clickhouse_password" {
description = "Clickhouse admin password"
type = string
sensitive = true
}
output "clickhouse_host_fqdn" {
value = resource.yandex_mdb_clickhouse_cluster.clickhouse_starschema.host[0].fqdn
}
output "yandex_storage_bucket_name" {
value = resource.yandex_storage_bucket.analytics_engineering_airbyte.id
}
# output "yandex_storage_bucket_domain_name" {
# value = resource.yandex_storage_bucket.analytics_engineering_airbyte.bucket_domain_name
# }
output "yandex_iam_service_account_static_access_key" {
value = yandex_iam_service_account_static_access_key.sa-static-key.access_key
}
output "yandex_iam_service_account_static_secret_key" {
value = yandex_iam_service_account_static_access_key.sa-static-key.secret_key
sensitive = true
}
output "yandex_compute_instance_nat_ip_address" {
value = yandex_compute_instance.airbyte.network_interface.0.nat_ip_address
}