mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit finalized Terraform configuration using CentOS and CentOS Atomic Host images for working with an SSH bastion host Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
11 lines
239 B
HCL
11 lines
239 B
HCL
output "bastion_pub_ip" {
|
|
value = ["${aws_instance.bastion.public_ip}"]
|
|
}
|
|
|
|
output "bastion_priv_ip" {
|
|
value = ["${aws_instance.bastion.private_ip}"]
|
|
}
|
|
|
|
output "remote_priv_ip" {
|
|
value = ["${aws_instance.private.private_ip}"]
|
|
}
|