© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Thu Kha Kyawe
Cloud Engineer | Site Reliability Engineer
Thank you!
but I found out there is error in outputs.tf. Wrong
value = "http://${aws_instance.web.public_ip}"
It must be
output "website_url" { description = "Website URL" value = "${aws_instance.web.public_ip}" }
StackOps - Diary
Linux, DevOps, Kubernetes, AWS
Thanks for noting that! Yes, the correct full block in outputs.tf should be. I appreciate the feedback!.