mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
Commit initial set of files for an learning environment for Traefik (includes Terraform configurations and Ansible playbooks). Not completely functional yet; Terraform configuration works but Ansible playbook still being tested. 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}"]
|
|
}
|