diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml index 32ba33e..c8e5413 100644 --- a/.gitea/workflows/lint.yaml +++ b/.gitea/workflows/lint.yaml @@ -2,6 +2,8 @@ name: Check with kubeconform on: push: branches: [ main ] + paths: + - 'k8s/**' jobs: lint: runs-on: ubuntu-latest @@ -98,4 +100,4 @@ jobs: Invalid files: ${{ env.INVALID_FILES }} - 🔗 Check details \ No newline at end of file + 🔗 Check details diff --git a/terraform/authentik/outputs.tf b/terraform/authentik/outputs.tf index cfe7897..6880fbe 100644 --- a/terraform/authentik/outputs.tf +++ b/terraform/authentik/outputs.tf @@ -99,24 +99,24 @@ output "applications_for_wiki" { value = { proxy_apps = { for k, v in var.proxy_applications : k => { - name = v.name - type = "Proxy" - url = v.external_host - group = v.group - description = v.meta_description - icon = v.meta_icon - slug = v.slug + name = v.name + type = "Proxy" + url = v.external_host + group = v.group + description = v.meta_description + icon = v.meta_icon + slug = v.slug } } oauth_apps = { for k, v in var.oauth_applications : k => { - name = v.name - type = "OAuth2/OpenID" - url = length(v.redirect_uris) > 0 ? "https://${split("/", replace(v.redirect_uris[0], "https://", ""))[0]}" : "" - group = v.group - description = v.meta_description - icon = v.meta_icon - slug = v.slug + name = v.name + type = "OAuth2/OpenID" + url = length(v.redirect_uris) > 0 ? "https://${split("/", replace(v.redirect_uris[0], "https://", ""))[0]}" : "" + group = v.group + description = v.meta_description + icon = v.meta_icon + slug = v.slug } } }