authentik.SourceOauth
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as authentik from "@pulumi/authentik";
const default_source_authentication = authentik.getFlow({
slug: "default-source-authentication",
});
const default_source_enrollment = authentik.getFlow({
slug: "default-source-enrollment",
});
const name = new authentik.SourceOauth("name", {
slug: "discord",
authenticationFlow: default_source_authentication.then(default_source_authentication => default_source_authentication.id),
enrollmentFlow: default_source_enrollment.then(default_source_enrollment => default_source_enrollment.id),
providerType: "discord",
consumerKey: "foo",
consumerSecret: "bar",
});
import pulumi
import pulumi_authentik as authentik
default_source_authentication = authentik.get_flow(slug="default-source-authentication")
default_source_enrollment = authentik.get_flow(slug="default-source-enrollment")
name = authentik.SourceOauth("name",
slug="discord",
authentication_flow=default_source_authentication.id,
enrollment_flow=default_source_enrollment.id,
provider_type="discord",
consumer_key="foo",
consumer_secret="bar")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/authentik/v2025/authentik"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
default_source_authentication, err := authentik.LookupFlow(ctx, &authentik.LookupFlowArgs{
Slug: pulumi.StringRef("default-source-authentication"),
}, nil)
if err != nil {
return err
}
default_source_enrollment, err := authentik.LookupFlow(ctx, &authentik.LookupFlowArgs{
Slug: pulumi.StringRef("default-source-enrollment"),
}, nil)
if err != nil {
return err
}
_, err = authentik.NewSourceOauth(ctx, "name", &authentik.SourceOauthArgs{
Slug: pulumi.String("discord"),
AuthenticationFlow: pulumi.String(default_source_authentication.Id),
EnrollmentFlow: pulumi.String(default_source_enrollment.Id),
ProviderType: pulumi.String("discord"),
ConsumerKey: pulumi.String("foo"),
ConsumerSecret: pulumi.String("bar"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Authentik = Pulumi.Authentik;
return await Deployment.RunAsync(() =>
{
var default_source_authentication = Authentik.GetFlow.Invoke(new()
{
Slug = "default-source-authentication",
});
var default_source_enrollment = Authentik.GetFlow.Invoke(new()
{
Slug = "default-source-enrollment",
});
var name = new Authentik.SourceOauth("name", new()
{
Slug = "discord",
AuthenticationFlow = default_source_authentication.Apply(default_source_authentication => default_source_authentication.Apply(getFlowResult => getFlowResult.Id)),
EnrollmentFlow = default_source_enrollment.Apply(default_source_enrollment => default_source_enrollment.Apply(getFlowResult => getFlowResult.Id)),
ProviderType = "discord",
ConsumerKey = "foo",
ConsumerSecret = "bar",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.authentik.AuthentikFunctions;
import com.pulumi.authentik.inputs.GetFlowArgs;
import com.pulumi.authentik.SourceOauth;
import com.pulumi.authentik.SourceOauthArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var default-source-authentication = AuthentikFunctions.getFlow(GetFlowArgs.builder()
.slug("default-source-authentication")
.build());
final var default-source-enrollment = AuthentikFunctions.getFlow(GetFlowArgs.builder()
.slug("default-source-enrollment")
.build());
var name = new SourceOauth("name", SourceOauthArgs.builder()
.slug("discord")
.authenticationFlow(default_source_authentication.id())
.enrollmentFlow(default_source_enrollment.id())
.providerType("discord")
.consumerKey("foo")
.consumerSecret("bar")
.build());
}
}
resources:
name:
type: authentik:SourceOauth
properties:
slug: discord
authenticationFlow: ${["default-source-authentication"].id}
enrollmentFlow: ${["default-source-enrollment"].id}
providerType: discord
consumerKey: foo
consumerSecret: bar
variables:
default-source-authentication:
fn::invoke:
function: authentik:getFlow
arguments:
slug: default-source-authentication
default-source-enrollment:
fn::invoke:
function: authentik:getFlow
arguments:
slug: default-source-enrollment
Create SourceOauth Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceOauth(name: string, args: SourceOauthArgs, opts?: CustomResourceOptions);
@overload
def SourceOauth(resource_name: str,
args: SourceOauthArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceOauth(resource_name: str,
opts: Optional[ResourceOptions] = None,
consumer_key: Optional[str] = None,
slug: Optional[str] = None,
provider_type: Optional[str] = None,
consumer_secret: Optional[str] = None,
oidc_well_known_url: Optional[str] = None,
policy_engine_mode: Optional[str] = None,
enabled: Optional[bool] = None,
enrollment_flow: Optional[str] = None,
group_matching_mode: Optional[str] = None,
name: Optional[str] = None,
oidc_jwks: Optional[str] = None,
oidc_jwks_url: Optional[str] = None,
access_token_url: Optional[str] = None,
authorization_url: Optional[str] = None,
profile_url: Optional[str] = None,
property_mappings: Optional[Sequence[str]] = None,
property_mappings_groups: Optional[Sequence[str]] = None,
authentication_flow: Optional[str] = None,
request_token_url: Optional[str] = None,
additional_scopes: Optional[str] = None,
source_oauth_id: Optional[str] = None,
user_matching_mode: Optional[str] = None,
user_path_template: Optional[str] = None,
uuid: Optional[str] = None)
func NewSourceOauth(ctx *Context, name string, args SourceOauthArgs, opts ...ResourceOption) (*SourceOauth, error)
public SourceOauth(string name, SourceOauthArgs args, CustomResourceOptions? opts = null)
public SourceOauth(String name, SourceOauthArgs args)
public SourceOauth(String name, SourceOauthArgs args, CustomResourceOptions options)
type: authentik:SourceOauth
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SourceOauthArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SourceOauthArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SourceOauthArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceOauthArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceOauthArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sourceOauthResource = new Authentik.SourceOauth("sourceOauthResource", new()
{
ConsumerKey = "string",
Slug = "string",
ProviderType = "string",
ConsumerSecret = "string",
OidcWellKnownUrl = "string",
PolicyEngineMode = "string",
Enabled = false,
EnrollmentFlow = "string",
GroupMatchingMode = "string",
Name = "string",
OidcJwks = "string",
OidcJwksUrl = "string",
AccessTokenUrl = "string",
AuthorizationUrl = "string",
ProfileUrl = "string",
PropertyMappings = new[]
{
"string",
},
PropertyMappingsGroups = new[]
{
"string",
},
AuthenticationFlow = "string",
RequestTokenUrl = "string",
AdditionalScopes = "string",
SourceOauthId = "string",
UserMatchingMode = "string",
UserPathTemplate = "string",
Uuid = "string",
});
example, err := authentik.NewSourceOauth(ctx, "sourceOauthResource", &authentik.SourceOauthArgs{
ConsumerKey: pulumi.String("string"),
Slug: pulumi.String("string"),
ProviderType: pulumi.String("string"),
ConsumerSecret: pulumi.String("string"),
OidcWellKnownUrl: pulumi.String("string"),
PolicyEngineMode: pulumi.String("string"),
Enabled: pulumi.Bool(false),
EnrollmentFlow: pulumi.String("string"),
GroupMatchingMode: pulumi.String("string"),
Name: pulumi.String("string"),
OidcJwks: pulumi.String("string"),
OidcJwksUrl: pulumi.String("string"),
AccessTokenUrl: pulumi.String("string"),
AuthorizationUrl: pulumi.String("string"),
ProfileUrl: pulumi.String("string"),
PropertyMappings: pulumi.StringArray{
pulumi.String("string"),
},
PropertyMappingsGroups: pulumi.StringArray{
pulumi.String("string"),
},
AuthenticationFlow: pulumi.String("string"),
RequestTokenUrl: pulumi.String("string"),
AdditionalScopes: pulumi.String("string"),
SourceOauthId: pulumi.String("string"),
UserMatchingMode: pulumi.String("string"),
UserPathTemplate: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var sourceOauthResource = new SourceOauth("sourceOauthResource", SourceOauthArgs.builder()
.consumerKey("string")
.slug("string")
.providerType("string")
.consumerSecret("string")
.oidcWellKnownUrl("string")
.policyEngineMode("string")
.enabled(false)
.enrollmentFlow("string")
.groupMatchingMode("string")
.name("string")
.oidcJwks("string")
.oidcJwksUrl("string")
.accessTokenUrl("string")
.authorizationUrl("string")
.profileUrl("string")
.propertyMappings("string")
.propertyMappingsGroups("string")
.authenticationFlow("string")
.requestTokenUrl("string")
.additionalScopes("string")
.sourceOauthId("string")
.userMatchingMode("string")
.userPathTemplate("string")
.uuid("string")
.build());
source_oauth_resource = authentik.SourceOauth("sourceOauthResource",
consumer_key="string",
slug="string",
provider_type="string",
consumer_secret="string",
oidc_well_known_url="string",
policy_engine_mode="string",
enabled=False,
enrollment_flow="string",
group_matching_mode="string",
name="string",
oidc_jwks="string",
oidc_jwks_url="string",
access_token_url="string",
authorization_url="string",
profile_url="string",
property_mappings=["string"],
property_mappings_groups=["string"],
authentication_flow="string",
request_token_url="string",
additional_scopes="string",
source_oauth_id="string",
user_matching_mode="string",
user_path_template="string",
uuid="string")
const sourceOauthResource = new authentik.SourceOauth("sourceOauthResource", {
consumerKey: "string",
slug: "string",
providerType: "string",
consumerSecret: "string",
oidcWellKnownUrl: "string",
policyEngineMode: "string",
enabled: false,
enrollmentFlow: "string",
groupMatchingMode: "string",
name: "string",
oidcJwks: "string",
oidcJwksUrl: "string",
accessTokenUrl: "string",
authorizationUrl: "string",
profileUrl: "string",
propertyMappings: ["string"],
propertyMappingsGroups: ["string"],
authenticationFlow: "string",
requestTokenUrl: "string",
additionalScopes: "string",
sourceOauthId: "string",
userMatchingMode: "string",
userPathTemplate: "string",
uuid: "string",
});
type: authentik:SourceOauth
properties:
accessTokenUrl: string
additionalScopes: string
authenticationFlow: string
authorizationUrl: string
consumerKey: string
consumerSecret: string
enabled: false
enrollmentFlow: string
groupMatchingMode: string
name: string
oidcJwks: string
oidcJwksUrl: string
oidcWellKnownUrl: string
policyEngineMode: string
profileUrl: string
propertyMappings:
- string
propertyMappingsGroups:
- string
providerType: string
requestTokenUrl: string
slug: string
sourceOauthId: string
userMatchingMode: string
userPathTemplate: string
uuid: string
SourceOauth Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SourceOauth resource accepts the following input properties:
- Consumer
Key string - Consumer
Secret string - Provider
Type string - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- Slug string
- Access
Token stringUrl - Only required for OAuth1.
- Additional
Scopes string - Authentication
Flow string - string
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Oidc
Jwks string - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- Oidc
Jwks stringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - Oidc
Well stringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Profile
Url string - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Property
Mappings List<string> - Property
Mappings List<string>Groups - Request
Token stringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Source
Oauth stringId - User
Matching stringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - User
Path stringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - Uuid string
- Generated.
- Consumer
Key string - Consumer
Secret string - Provider
Type string - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- Slug string
- Access
Token stringUrl - Only required for OAuth1.
- Additional
Scopes string - Authentication
Flow string - string
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Oidc
Jwks string - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- Oidc
Jwks stringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - Oidc
Well stringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Profile
Url string - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Property
Mappings []string - Property
Mappings []stringGroups - Request
Token stringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Source
Oauth stringId - User
Matching stringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - User
Path stringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - Uuid string
- Generated.
- consumer
Key String - consumer
Secret String - provider
Type String - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- slug String
- access
Token StringUrl - Only required for OAuth1.
- additional
Scopes String - authentication
Flow String - String
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- oidc
Jwks String - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc
Jwks StringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc
Well StringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - profile
Url String - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property
Mappings List<String> - property
Mappings List<String>Groups - request
Token StringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - source
Oauth StringId - user
Matching StringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user
Path StringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid String
- Generated.
- consumer
Key string - consumer
Secret string - provider
Type string - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- slug string
- access
Token stringUrl - Only required for OAuth1.
- additional
Scopes string - authentication
Flow string - string
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - enabled boolean
- Defaults to
true
. - enrollment
Flow string - group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name string
- oidc
Jwks string - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc
Jwks stringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc
Well stringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - profile
Url string - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property
Mappings string[] - property
Mappings string[]Groups - request
Token stringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - source
Oauth stringId - user
Matching stringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user
Path stringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid string
- Generated.
- consumer_
key str - consumer_
secret str - provider_
type str - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- slug str
- access_
token_ strurl - Only required for OAuth1.
- additional_
scopes str - authentication_
flow str - str
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - enabled bool
- Defaults to
true
. - enrollment_
flow str - group_
matching_ strmode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name str
- oidc_
jwks str - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc_
jwks_ strurl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc_
well_ strknown_ url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy_
engine_ strmode - Allowed values: -
all
-any
Defaults toany
. - profile_
url str - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property_
mappings Sequence[str] - property_
mappings_ Sequence[str]groups - request_
token_ strurl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - source_
oauth_ strid - user_
matching_ strmode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user_
path_ strtemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid str
- Generated.
- consumer
Key String - consumer
Secret String - provider
Type String - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- slug String
- access
Token StringUrl - Only required for OAuth1.
- additional
Scopes String - authentication
Flow String - String
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- oidc
Jwks String - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc
Jwks StringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc
Well StringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - profile
Url String - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property
Mappings List<String> - property
Mappings List<String>Groups - request
Token StringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - source
Oauth StringId - user
Matching StringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user
Path StringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid String
- Generated.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceOauth resource produces the following output properties:
- Callback
Uri string - Generated.
- Id string
- The provider-assigned unique ID for this managed resource.
- Callback
Uri string - Generated.
- Id string
- The provider-assigned unique ID for this managed resource.
- callback
Uri String - Generated.
- id String
- The provider-assigned unique ID for this managed resource.
- callback
Uri string - Generated.
- id string
- The provider-assigned unique ID for this managed resource.
- callback_
uri str - Generated.
- id str
- The provider-assigned unique ID for this managed resource.
- callback
Uri String - Generated.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SourceOauth Resource
Get an existing SourceOauth resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SourceOauthState, opts?: CustomResourceOptions): SourceOauth
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_token_url: Optional[str] = None,
additional_scopes: Optional[str] = None,
authentication_flow: Optional[str] = None,
authorization_url: Optional[str] = None,
callback_uri: Optional[str] = None,
consumer_key: Optional[str] = None,
consumer_secret: Optional[str] = None,
enabled: Optional[bool] = None,
enrollment_flow: Optional[str] = None,
group_matching_mode: Optional[str] = None,
name: Optional[str] = None,
oidc_jwks: Optional[str] = None,
oidc_jwks_url: Optional[str] = None,
oidc_well_known_url: Optional[str] = None,
policy_engine_mode: Optional[str] = None,
profile_url: Optional[str] = None,
property_mappings: Optional[Sequence[str]] = None,
property_mappings_groups: Optional[Sequence[str]] = None,
provider_type: Optional[str] = None,
request_token_url: Optional[str] = None,
slug: Optional[str] = None,
source_oauth_id: Optional[str] = None,
user_matching_mode: Optional[str] = None,
user_path_template: Optional[str] = None,
uuid: Optional[str] = None) -> SourceOauth
func GetSourceOauth(ctx *Context, name string, id IDInput, state *SourceOauthState, opts ...ResourceOption) (*SourceOauth, error)
public static SourceOauth Get(string name, Input<string> id, SourceOauthState? state, CustomResourceOptions? opts = null)
public static SourceOauth get(String name, Output<String> id, SourceOauthState state, CustomResourceOptions options)
resources: _: type: authentik:SourceOauth get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Token stringUrl - Only required for OAuth1.
- Additional
Scopes string - Authentication
Flow string - string
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Callback
Uri string - Generated.
- Consumer
Key string - Consumer
Secret string - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Oidc
Jwks string - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- Oidc
Jwks stringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - Oidc
Well stringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Profile
Url string - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Property
Mappings List<string> - Property
Mappings List<string>Groups - Provider
Type string - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- Request
Token stringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Slug string
- Source
Oauth stringId - User
Matching stringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - User
Path stringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - Uuid string
- Generated.
- Access
Token stringUrl - Only required for OAuth1.
- Additional
Scopes string - Authentication
Flow string - string
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Callback
Uri string - Generated.
- Consumer
Key string - Consumer
Secret string - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Oidc
Jwks string - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- Oidc
Jwks stringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - Oidc
Well stringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Profile
Url string - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Property
Mappings []string - Property
Mappings []stringGroups - Provider
Type string - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- Request
Token stringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - Slug string
- Source
Oauth stringId - User
Matching stringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - User
Path stringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - Uuid string
- Generated.
- access
Token StringUrl - Only required for OAuth1.
- additional
Scopes String - authentication
Flow String - String
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - callback
Uri String - Generated.
- consumer
Key String - consumer
Secret String - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- oidc
Jwks String - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc
Jwks StringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc
Well StringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - profile
Url String - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property
Mappings List<String> - property
Mappings List<String>Groups - provider
Type String - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- request
Token StringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - slug String
- source
Oauth StringId - user
Matching StringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user
Path StringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid String
- Generated.
- access
Token stringUrl - Only required for OAuth1.
- additional
Scopes string - authentication
Flow string - string
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - callback
Uri string - Generated.
- consumer
Key string - consumer
Secret string - enabled boolean
- Defaults to
true
. - enrollment
Flow string - group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name string
- oidc
Jwks string - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc
Jwks stringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc
Well stringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - profile
Url string - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property
Mappings string[] - property
Mappings string[]Groups - provider
Type string - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- request
Token stringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - slug string
- source
Oauth stringId - user
Matching stringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user
Path stringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid string
- Generated.
- access_
token_ strurl - Only required for OAuth1.
- additional_
scopes str - authentication_
flow str - str
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - callback_
uri str - Generated.
- consumer_
key str - consumer_
secret str - enabled bool
- Defaults to
true
. - enrollment_
flow str - group_
matching_ strmode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name str
- oidc_
jwks str - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc_
jwks_ strurl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc_
well_ strknown_ url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy_
engine_ strmode - Allowed values: -
all
-any
Defaults toany
. - profile_
url str - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property_
mappings Sequence[str] - property_
mappings_ Sequence[str]groups - provider_
type str - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- request_
token_ strurl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - slug str
- source_
oauth_ strid - user_
matching_ strmode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user_
path_ strtemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid str
- Generated.
- access
Token StringUrl - Only required for OAuth1.
- additional
Scopes String - authentication
Flow String - String
- Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - callback
Uri String - Generated.
- consumer
Key String - consumer
Secret String - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- oidc
Jwks String - Manually configure JWKS keys for use with machine-to-machine authentication. JSON format expected. Use jsonencode() to pass objects. Generated.
- oidc
Jwks StringUrl - Automatically configure JWKS if not specified by
oidc_well_known_url
. - oidc
Well StringKnown Url - Automatically configure source from OIDC well-known endpoint. URL is taken as is, and should end with
.well-known/openid-configuration
. - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - profile
Url String - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - property
Mappings List<String> - property
Mappings List<String>Groups - provider
Type String - Allowed values: -
apple
-openidconnect
-azuread
-discord
-facebook
-github
-gitlab
-google
-mailcow
-okta
-patreon
-reddit
-twitch
-twitter
- request
Token StringUrl - Manually configure OAuth2 URLs when
oidc_well_known_url
is not set. - slug String
- source
Oauth StringId - user
Matching StringMode - Allowed values: -
identifier
-email_link
-email_deny
-username_link
-username_deny
Defaults toidentifier
. - user
Path StringTemplate - Defaults to
goauthentik.io/sources/%(slug)s
. - uuid String
- Generated.
Package Details
- Repository
- authentik goauthentik/terraform-provider-authentik
- License
- Notes
- This Pulumi package is based on the
authentik
Terraform Provider.