diff --git a/outputs.tf b/outputs.tf index d336a2a..8371e7b 100644 --- a/outputs.tf +++ b/outputs.tf @@ -8,9 +8,9 @@ output "node_info" { # Remove special characters and crop to into a 32 character seed. substr(replace(replace(random_id.node_seed.b64_url, "_", ""), "-", ""), 0, 32), # The node's public Client IP. Used later on for automatic genesis file generation - aws_eip.public_client_ip.public_ip[0], + aws_eip.public_client_ip[*].public_ip, # The node's public Node IP. Used later on for automatic genesis file generation. # Should be the same as the first output, but we are putting this here anyay for clarity. - aws_eip.public_node_ip.public_ip[0] + aws_eip.public_node_ip[*].public_ip ] }