This commit is contained in:
2024-01-26 16:23:36 +01:00
parent e07baec28d
commit 4d8e42f0f6
2 changed files with 11 additions and 11 deletions

View File

@@ -11,31 +11,31 @@ options:
examples: examples:
- traefik - traefik
type: string type: string
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
domain: domain:
default: your-company default: your-company
examples: examples:
- your-company - your-company
type: string type: string
ingress_class:
default: traefik
examples:
- traefik
type: string
app_group: app_group:
default: infra default: infra
examples: examples:
- infra - infra
type: string type: string
issuer:
default: letsencrypt-prod
examples:
- letsencrypt-prod
type: string
domain_name: domain_name:
default: your_company.com default: your_company.com
examples: examples:
- your_company.com - your_company.com
type: string type: string
ingress_class:
default: traefik
examples:
- traefik
type: string
dependencies: dependencies:
- dist: null - dist: null
category: share category: share

View File

@@ -8,7 +8,7 @@ locals {
Authorization = "Bearer ${data.kubernetes_secret_v1.authentik.data["AUTHENTIK_BOOTSTRAP_TOKEN"]}" Authorization = "Bearer ${data.kubernetes_secret_v1.authentik.data["AUTHENTIK_BOOTSTRAP_TOKEN"]}"
} }
service = { service = {
"name" = "${var.instance}${var.component==""?"":"-"}${var.component}" "name" = "${var.component}-${var.instance}"
"port" = { "port" = {
"number" = 80 "number" = 80
} }