-
Notifications
You must be signed in to change notification settings - Fork 13
/
outputs.tf
26 lines (22 loc) · 1.12 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
output "harvester_url" {
value = "https://${equinix_metal_reserved_ip_block.harvester_vip.network}/"
description = "The URL to reach the Harvester user interface"
}
output "public_ips" {
value = concat([data.equinix_metal_device.seed_device.access_public_ipv4], data.equinix_metal_device.join_devices.*.access_public_ipv4)
description = "The public IP addresses of all Harvester nodes"
}
output "out_of_band_hostnames" {
value = concat([data.equinix_metal_device.seed_device.sos_hostname], data.equinix_metal_device.join_devices.*.sos_hostname)
description = "Out of band hostnames for SSH access to the console"
}
output "harvester_os_password" {
value = random_password.password.result
description = "The password for the default OS user, 'rancher' (https://docs.harvesterhci.io/v1.3/install/harvester-configuration/#ospassword)"
sensitive = true
}
output "harvester_cluster_secret" {
value = random_password.token.result
description = "The cluster secret for joining nodes to the cluster (https://docs.harvesterhci.io/v1.3/install/harvester-configuration/#token)"
sensitive = true
}