Files
homelab/terraform/authentik/modules/saml-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

24 lines
593 B
HCL

output "provider_id" {
description = "ID of the SAML provider"
value = authentik_provider_saml.provider.id
}
output "application_id" {
description = "ID of the application"
value = authentik_application.app.id
}
output "provider_name" {
description = "Name of the SAML provider"
value = authentik_provider_saml.provider.name
}
output "acs_url" {
description = "Assertion Consumer Service URL"
value = authentik_provider_saml.provider.acs_url
}
output "issuer" {
description = "SAML Issuer"
value = authentik_provider_saml.provider.issuer
}