cosmos-sdk/networks/remote/terraform-aws/nodes/outputs.tf

16 lines
278 B
HCL

// The cluster name
output "name" {
value = "${var.name}"
}
// The list of cluster instance IDs
output "instances" {
value = ["${aws_instance.node.*.id}"]
}
// The list of cluster instance public IPs
output "public_ips" {
value = ["${aws_instance.node.*.public_ip}"]
}