Added terraform support for Exoscale (#7141)

* Added terraform support for Exoscale

* Fixed markdown lint error on exoscale terraform
This commit is contained in:
Fredrik Liv
2021-01-23 05:37:39 +01:00
committed by GitHub
parent ef939dee74
commit 404ea0270e
12 changed files with 675 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
output "master_ips" {
value = module.kubernetes.master_ip_addresses
}
output "worker_ips" {
value = module.kubernetes.worker_ip_addresses
}
output "ingress_controller_lb_ip_address" {
value = module.kubernetes.ingress_controller_lb_ip_address
}
output "control_plane_lb_ip_address" {
value = module.kubernetes.control_plane_lb_ip_address
}