19 lines
617 B
Terraform
19 lines
617 B
Terraform
![]() |
data "authentik_flow" "default-provider-authorization-implicit-consent" {
|
||
|
slug = "default-provider-authorization-implicit-consent"
|
||
|
}
|
||
|
|
||
|
data "authentik_flow" "default-authentication-flow" {
|
||
|
slug = "default-authentication-flow"
|
||
|
}
|
||
|
data "authentik_property_mapping_provider_scope" "scope-email" {
|
||
|
name = "authentik default OAuth Mapping: OpenID 'email'"
|
||
|
}
|
||
|
|
||
|
data "authentik_property_mapping_provider_scope" "scope-profile" {
|
||
|
name = "authentik default OAuth Mapping: OpenID 'profile'"
|
||
|
}
|
||
|
|
||
|
data "authentik_property_mapping_provider_scope" "scope-openid" {
|
||
|
name = "authentik default OAuth Mapping: OpenID 'openid'"
|
||
|
}
|