fmt
All checks were successful
Check with kubeconform / lint (push) Successful in 1m11s

This commit is contained in:
AB from home.homenet
2025-09-16 00:28:54 +03:00
parent 7dde0d3f2a
commit d71935d063
5 changed files with 122 additions and 119 deletions

View File

@@ -4,9 +4,9 @@ output "oauth_applications" {
for k, v in module.oauth_applications : k => {
application_id = v.application_id
application_uuid = v.application_uuid
client_id = v.client_id
client_secret = v.client_secret
slug = v.application_slug
client_id = v.client_id
client_secret = v.client_secret
slug = v.application_slug
}
}
sensitive = true
@@ -18,9 +18,9 @@ output "proxy_applications" {
for k, v in module.proxy_applications : k => {
application_id = v.application_id
application_uuid = v.application_uuid
external_host = v.external_host
internal_host = v.internal_host
slug = v.application_slug
external_host = v.external_host
internal_host = v.internal_host
slug = v.application_slug
}
}
}
@@ -61,8 +61,8 @@ output "certificates" {
description = "Certificates details"
value = {
for k, v in authentik_certificate_key_pair.certificates : k => {
id = v.id
name = v.name
id = v.id
name = v.name
fingerprint_sha256 = v.fingerprint_sha256
fingerprint_sha1 = v.fingerprint_sha1
}