mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit set of files for turning up a Docker Swarm mode cluster on Ubuntu instances on AWS Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
7 lines
158 B
HCL
7 lines
158 B
HCL
output "manager_pub_ip" {
|
|
value = ["${aws_instance.manager.public_ip}"]
|
|
}
|
|
|
|
output "worker_pub_ips" {
|
|
value = ["${aws_instance.worker.*.public_ip}"]
|
|
}
|