2025-09-15 21:42:01 +03:00
|
|
|
output "provider_id" {
|
|
|
|
description = "ID of the OAuth2 provider"
|
|
|
|
value = authentik_provider_oauth2.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 "client_id" {
|
|
|
|
description = "OAuth2 Client ID"
|
|
|
|
value = authentik_provider_oauth2.provider.client_id
|
|
|
|
}
|
|
|
|
|
|
|
|
output "client_secret" {
|
|
|
|
description = "OAuth2 Client Secret"
|
|
|
|
value = authentik_provider_oauth2.provider.client_secret
|
|
|
|
sensitive = true
|
|
|
|
}
|
|
|
|
|
|
|
|
output "application_slug" {
|
|
|
|
description = "Application slug"
|
|
|
|
value = authentik_application.app.slug
|
|
|
|
}
|