30 lines
740 B
Terraform
30 lines
740 B
Terraform
|
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"
|
||
|
value = authentik_application.app.id
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|