Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainMartel committed Feb 19, 2024
1 parent 95b28ae commit c9c1c48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
}

0 comments on commit c9c1c48

Please sign in to comment.