This commit is contained in:
2023-10-29 09:07:40 +01:00
parent 47a6fc61fa
commit ff690d420a
5 changed files with 67 additions and 35 deletions

View File

@@ -1,6 +1,7 @@
locals {
dns-name = "${var.sub-domain}.${var.domain-name}"
dns-names = [local.dns-name]
icon = "/favicons/favicon-light-default.svg"
service = {
"name" = "${var.component}-server"
"port" = {
@@ -24,3 +25,15 @@ module "ingress" {
kubectl = kubectl
}
}
module "application" {
source = "/dist/modules/application"
component = var.component
instance = var.instance
app-group = var.app-group
dns-name = local.dns-name
icon = local.icon
providers = {
authentik = authentik
}
}