Files
homelab/terraform/authentik/modules/proxy-provider/outputs.tf

36 lines
849 B
Terraform
Raw Normal View History

2025-09-15 21:42:01 +03:00
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"
2025-09-16 15:28:42 +03:00
value = authentik_application.app.uuid
2025-09-15 21:42:01 +03:00
}
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
}