Skip to content

Commit

Permalink
Merge pull request #4 from hazelops/feature/refactor-with-this
Browse files Browse the repository at this point in the history
Add select
  • Loading branch information
AutomationD authored Oct 26, 2021
2 parents 2dd9eed + 0c59790 commit a80c2c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ output "security_group" {
}

output "public_ip" {
value = aws_eip.this.public_ip
value = element(aws_eip.this.*.public_ip, 0)
}

output "private_ip" {
value = aws_eip.this.private_ip
value = element(aws_eip.this.*.private_ip, 0)
}

0 comments on commit a80c2c9

Please sign in to comment.