mirror of
https://github.com/sidpalas/devops-directive-terraform-course.git
synced 2025-12-13 14:21:14 +00:00
8 lines
150 B
HCL
8 lines
150 B
HCL
output "instance_ip_addr" {
|
|
value = aws_instance.instance.private_ip
|
|
}
|
|
|
|
output "db_instance_addr" {
|
|
value = aws_db_instance.db_instance.address
|
|
}
|