mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
Provision loadbalancer with terraform and custom scripts
This commit is contained in:
parent
01b7e79e55
commit
77a6ef36f3
8 changed files with 136 additions and 29 deletions
11
terraform/outputs.tf
Normal file
11
terraform/outputs.tf
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
output "loadbalancer_ip" {
|
||||
value = var.lb_ip
|
||||
}
|
||||
|
||||
output "node_public_ips" {
|
||||
value = [scaleway_server.node.*.public_ip]
|
||||
}
|
||||
|
||||
output "master_public_ips" {
|
||||
value = [scaleway_server.master.*.public_ip]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue