Skip to content

Commit

Permalink
Merge pull request #33 from kunduso/update-output-url
Browse files Browse the repository at this point in the history
added http to dns output
  • Loading branch information
kunduso authored Apr 5, 2024
2 parents 13dc4a6 + ed11bfc commit 1729704
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
@@ -1,6 +1,6 @@
output "instance_app-server_public_dns" {
value = aws_instance.app-server.*.public_dns
value = "http://${aws_instance.app-server.*.public_dns}"
}
output "load_balancer_dns_name" {
value = aws_lb.front.dns_name
value = "http://${aws_lb.front.dns_name}"
}

0 comments on commit 1729704

Please sign in to comment.