You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
output "ips" {
|
|
value = aws_instance.nodes.*.public_ip
|
|
}
|
|
|
|
output "private_ips" {
|
|
value = aws_instance.nodes.*.private_ip
|
|
}
|
|
|
|
output "names" {
|
|
value = aws_instance.nodes.*.tags.Name
|
|
}
|
|
|
|
output "nodes" {
|
|
value = aws_instance.nodes
|
|
}
|