diff --git a/outputs.tf b/outputs.tf index 8371e7b..1698311 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, + aws_eip.public_client_ip[0].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 + aws_eip.public_node_ip[0].public_ip ] }