Files
homelab/terraform/authentik/modules/proxy-provider/outputs.tf
AB from home.homenet 4ffc42af97
All checks were successful
Check with kubeconform / lint (push) Successful in 12s
Added Authentik TF code
2025-09-16 15:28:50 +03:00

36 lines
849 B
HCL

output "provider_id" {
description = "ID of the Proxy provider"
value = authentik_provider_proxy.provider.id
}
output "application_id" {
description = "ID of the application"
value = authentik_application.app.id
}
output "application_uuid" {
description = "UUID of the application"
value = authentik_application.app.uuid
}
output "application_slug" {
description = "Application slug"
value = authentik_application.app.slug
}
output "launch_url" {
description = "Application launch URL"
value = authentik_application.app.meta_launch_url
}
output "external_host" {
description = "External host URL"
value = authentik_provider_proxy.provider.external_host
}
output "internal_host" {
description = "Internal host URL"
value = authentik_provider_proxy.provider.internal_host
}