Search posts, tags, users, and pages
StackOps - Diary
Linux, DevOps, Kubernetes, AWS
Welcome to Day 5! Today we’ll explore how Terraform manages relationships between resources and how to query existing infrastructure using data sources. Understanding dependencies is crucial for building complex, reliable infrastructure. 🎯 Today’s G...
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}" }
Thanks for noting that! Yes, the correct full block in outputs.tf should be. I appreciate the feedback!.
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}" }