bd63279e59
I copied a wrong version of the terraform code. Sorry Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com>
16 lines
453 B
HCL
16 lines
453 B
HCL
output "provisioner_dns_name" {
|
|
value = "${split("-", packet_device.tink_provisioner.id)[0]}.packethost.net"
|
|
}
|
|
|
|
output "provisioner_ip" {
|
|
value = packet_device.tink_provisioner.network[0].address
|
|
}
|
|
|
|
output "worker_mac_addr" {
|
|
value = formatlist("%s", packet_device.tink_worker[*].ports[1].mac)
|
|
}
|
|
|
|
output "worker_sos" {
|
|
value = formatlist("%s@sos.%s.packet.net", packet_device.tink_worker[*].id, packet_device.tink_worker[*].deployed_facility)
|
|
}
|