Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 4fc01e5

Browse files
author
KoLiBer
committed
fix: remove outputs
1 parent 5d4d90d commit 4fc01e5

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

outputs.tf

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1 @@
1-
output "host" {
2-
depends_on = [data.k8sbootstrap_auth.this]
31

4-
value = "https://${local.public_alb}:6443"
5-
sensitive = false
6-
description = "Cluster Host"
7-
}
8-
9-
output "token" {
10-
depends_on = [data.k8sbootstrap_auth.this]
11-
12-
value = "${random_string.token_id.result}.${random_string.token_secret.result}"
13-
sensitive = true
14-
description = "Cluster Token"
15-
}
16-
17-
output "ca_crt" {
18-
value = data.k8sbootstrap_auth.this.ca_crt
19-
sensitive = true
20-
description = "Cluster CA Certificate"
21-
}
22-
23-
output "kubeconfig" {
24-
value = data.k8sbootstrap_auth.this.kubeconfig
25-
sensitive = true
26-
description = "Cluster Kubernetes Config"
27-
}

0 commit comments

Comments
 (0)