-
Notifications
You must be signed in to change notification settings - Fork 25
/
output.tf
50 lines (37 loc) · 1.32 KB
/
output.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
46
47
48
49
50
output "external_v4_endpoint" {
description = "An IPv4 external network address that is assigned to the master."
value = yandex_kubernetes_cluster.cluster.master[0].external_v4_endpoint
}
output "internal_v4_endpoint" {
description = "An IPv4 internal network address that is assigned to the master."
value = yandex_kubernetes_cluster.cluster.master[0].internal_v4_endpoint
}
output "cluster_ca_certificate" {
description = <<-EOF
PEM-encoded public certificate that is the root of trust for
the Kubernetes cluster.
EOF
value = yandex_kubernetes_cluster.cluster.master[0].cluster_ca_certificate
}
output "cluster_id" {
description = "ID of a new Kubernetes cluster."
value = yandex_kubernetes_cluster.cluster.id
}
output "node_groups" {
description = "Attributes of yandex_node_group resources created in cluster"
value = yandex_kubernetes_node_group.node_groups
}
output "service_account_id" {
description = <<-EOF
ID of service account used for provisioning Compute Cloud and VPC resources
for Kubernetes cluster
EOF
value = local.service_account_id
}
output "node_service_account_id" {
description = <<-EOF
ID of service account to be used by the worker nodes of the Kubernetes cluster
to access Container Registry or to push node logs and metrics
EOF
value = local.node_service_account_id
}