forked from hassenius/terraform-module-icp-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
32 lines (25 loc) · 1.01 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
output "icp_public_key" {
description = "The public key used for boot master to connect via ssh for cluster setup"
value = "${var.generate_key ? tls_private_key.icpkey.public_key_openssh : var.icp_pub_key}"
}
output "icp_private_key" {
description = "The public key used for boot master to connect via ssh for cluster setup"
value = "${var.generate_key ? tls_private_key.icpkey.private_key_pem : var.icp_priv_key}"
}
output "install_complete" {
depends_on = ["null_resource.icp-install"]
description = "Boolean value that is set to true when ICP installation process is completed"
value = "true"
}
output "icp_version" {
value = "${var.icp-inception}"
}
output "cluster_ips" {
value = "${local.icp-ips}"
}
locals {
default_admin_password = "${lookup(var.icp_configuration, "default_admin_password", random_string.generated_password.result)}"
}
output "default_admin_password" {
value = "${local.default_admin_password != "" ? local.default_admin_password : random_string.generated_password.result}"
}