feat: removed lb, added managed cert

This commit is contained in:
2025-12-31 14:03:47 -05:00
parent f39b29288e
commit d4ae65180b
4 changed files with 6 additions and 46 deletions

View File

@@ -26,3 +26,9 @@ resource "hcloud_network_route" "gateway" {
destination = "0.0.0.0/0"
gateway = local.nat-private-ip
}
// A managed certificate for the domain, to be used by the load balancer.
resource "hcloud_managed_certificate" "managed_cert" {
name = "managed_cert"
domain_names = ["*.${local.domain}", "${local.domain}"]
}