16 lines
453 B
Terraform
16 lines
453 B
Terraform
|
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)
|
||
|
}
|