authentik.SourcePlex
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as authentik from "@pulumi/authentik";
const default_authorization_flow = authentik.getFlow({
slug: "default-provider-authorization-implicit-consent",
});
const name = new authentik.SourcePlex("name", {
slug: "plex",
authenticationFlow: default_authorization_flow.then(default_authorization_flow => default_authorization_flow.id),
enrollmentFlow: default_authorization_flow.then(default_authorization_flow => default_authorization_flow.id),
clientId: "foo-bar-baz",
plexToken: "foo",
});
import pulumi
import pulumi_authentik as authentik
default_authorization_flow = authentik.get_flow(slug="default-provider-authorization-implicit-consent")
name = authentik.SourcePlex("name",
slug="plex",
authentication_flow=default_authorization_flow.id,
enrollment_flow=default_authorization_flow.id,
client_id="foo-bar-baz",
plex_token="foo")
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_authorization_flow, err := authentik.LookupFlow(ctx, &authentik.LookupFlowArgs{
Slug: pulumi.StringRef("default-provider-authorization-implicit-consent"),
}, nil)
if err != nil {
return err
}
_, err = authentik.NewSourcePlex(ctx, "name", &authentik.SourcePlexArgs{
Slug: pulumi.String("plex"),
AuthenticationFlow: pulumi.String(default_authorization_flow.Id),
EnrollmentFlow: pulumi.String(default_authorization_flow.Id),
ClientId: pulumi.String("foo-bar-baz"),
PlexToken: pulumi.String("foo"),
})
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_authorization_flow = Authentik.GetFlow.Invoke(new()
{
Slug = "default-provider-authorization-implicit-consent",
});
var name = new Authentik.SourcePlex("name", new()
{
Slug = "plex",
AuthenticationFlow = default_authorization_flow.Apply(default_authorization_flow => default_authorization_flow.Apply(getFlowResult => getFlowResult.Id)),
EnrollmentFlow = default_authorization_flow.Apply(default_authorization_flow => default_authorization_flow.Apply(getFlowResult => getFlowResult.Id)),
ClientId = "foo-bar-baz",
PlexToken = "foo",
});
});
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.SourcePlex;
import com.pulumi.authentik.SourcePlexArgs;
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-authorization-flow = AuthentikFunctions.getFlow(GetFlowArgs.builder()
.slug("default-provider-authorization-implicit-consent")
.build());
var name = new SourcePlex("name", SourcePlexArgs.builder()
.slug("plex")
.authenticationFlow(default_authorization_flow.id())
.enrollmentFlow(default_authorization_flow.id())
.clientId("foo-bar-baz")
.plexToken("foo")
.build());
}
}
resources:
name:
type: authentik:SourcePlex
properties:
slug: plex
authenticationFlow: ${["default-authorization-flow"].id}
enrollmentFlow: ${["default-authorization-flow"].id}
clientId: foo-bar-baz
plexToken: foo
variables:
default-authorization-flow:
fn::invoke:
function: authentik:getFlow
arguments:
slug: default-provider-authorization-implicit-consent
Create SourcePlex Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourcePlex(name: string, args: SourcePlexArgs, opts?: CustomResourceOptions);
@overload
def SourcePlex(resource_name: str,
args: SourcePlexArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourcePlex(resource_name: str,
opts: Optional[ResourceOptions] = None,
client_id: Optional[str] = None,
slug: Optional[str] = None,
plex_token: Optional[str] = None,
group_matching_mode: Optional[str] = None,
enabled: Optional[bool] = None,
enrollment_flow: Optional[str] = None,
allow_friends: Optional[bool] = None,
name: Optional[str] = None,
authentication_flow: Optional[str] = None,
policy_engine_mode: Optional[str] = None,
allowed_servers: Optional[Sequence[str]] = None,
source_plex_id: Optional[str] = None,
user_matching_mode: Optional[str] = None,
user_path_template: Optional[str] = None,
uuid: Optional[str] = None)
func NewSourcePlex(ctx *Context, name string, args SourcePlexArgs, opts ...ResourceOption) (*SourcePlex, error)
public SourcePlex(string name, SourcePlexArgs args, CustomResourceOptions? opts = null)
public SourcePlex(String name, SourcePlexArgs args)
public SourcePlex(String name, SourcePlexArgs args, CustomResourceOptions options)
type: authentik:SourcePlex
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 SourcePlexArgs
- 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 SourcePlexArgs
- 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 SourcePlexArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourcePlexArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourcePlexArgs
- 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 sourcePlexResource = new Authentik.SourcePlex("sourcePlexResource", new()
{
ClientId = "string",
Slug = "string",
PlexToken = "string",
GroupMatchingMode = "string",
Enabled = false,
EnrollmentFlow = "string",
AllowFriends = false,
Name = "string",
AuthenticationFlow = "string",
PolicyEngineMode = "string",
AllowedServers = new[]
{
"string",
},
SourcePlexId = "string",
UserMatchingMode = "string",
UserPathTemplate = "string",
Uuid = "string",
});
example, err := authentik.NewSourcePlex(ctx, "sourcePlexResource", &authentik.SourcePlexArgs{
ClientId: pulumi.String("string"),
Slug: pulumi.String("string"),
PlexToken: pulumi.String("string"),
GroupMatchingMode: pulumi.String("string"),
Enabled: pulumi.Bool(false),
EnrollmentFlow: pulumi.String("string"),
AllowFriends: pulumi.Bool(false),
Name: pulumi.String("string"),
AuthenticationFlow: pulumi.String("string"),
PolicyEngineMode: pulumi.String("string"),
AllowedServers: pulumi.StringArray{
pulumi.String("string"),
},
SourcePlexId: pulumi.String("string"),
UserMatchingMode: pulumi.String("string"),
UserPathTemplate: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var sourcePlexResource = new SourcePlex("sourcePlexResource", SourcePlexArgs.builder()
.clientId("string")
.slug("string")
.plexToken("string")
.groupMatchingMode("string")
.enabled(false)
.enrollmentFlow("string")
.allowFriends(false)
.name("string")
.authenticationFlow("string")
.policyEngineMode("string")
.allowedServers("string")
.sourcePlexId("string")
.userMatchingMode("string")
.userPathTemplate("string")
.uuid("string")
.build());
source_plex_resource = authentik.SourcePlex("sourcePlexResource",
client_id="string",
slug="string",
plex_token="string",
group_matching_mode="string",
enabled=False,
enrollment_flow="string",
allow_friends=False,
name="string",
authentication_flow="string",
policy_engine_mode="string",
allowed_servers=["string"],
source_plex_id="string",
user_matching_mode="string",
user_path_template="string",
uuid="string")
const sourcePlexResource = new authentik.SourcePlex("sourcePlexResource", {
clientId: "string",
slug: "string",
plexToken: "string",
groupMatchingMode: "string",
enabled: false,
enrollmentFlow: "string",
allowFriends: false,
name: "string",
authenticationFlow: "string",
policyEngineMode: "string",
allowedServers: ["string"],
sourcePlexId: "string",
userMatchingMode: "string",
userPathTemplate: "string",
uuid: "string",
});
type: authentik:SourcePlex
properties:
allowFriends: false
allowedServers:
- string
authenticationFlow: string
clientId: string
enabled: false
enrollmentFlow: string
groupMatchingMode: string
name: string
plexToken: string
policyEngineMode: string
slug: string
sourcePlexId: string
userMatchingMode: string
userPathTemplate: string
uuid: string
SourcePlex 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 SourcePlex resource accepts the following input properties:
- Client
Id string - Plex
Token string - Slug string
- Allow
Friends bool - Defaults to
true
. - Allowed
Servers List<string> - Authentication
Flow string - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Source
Plex 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.
- Client
Id string - Plex
Token string - Slug string
- Allow
Friends bool - Defaults to
true
. - Allowed
Servers []string - Authentication
Flow string - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Source
Plex 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.
- client
Id String - plex
Token String - slug String
- allow
Friends Boolean - Defaults to
true
. - allowed
Servers List<String> - authentication
Flow String - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - source
Plex 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.
- client
Id string - plex
Token string - slug string
- allow
Friends boolean - Defaults to
true
. - allowed
Servers string[] - authentication
Flow string - enabled boolean
- Defaults to
true
. - enrollment
Flow string - group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name string
- policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - source
Plex 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.
- client_
id str - plex_
token str - slug str
- allow_
friends bool - Defaults to
true
. - allowed_
servers Sequence[str] - authentication_
flow str - enabled bool
- Defaults to
true
. - enrollment_
flow str - group_
matching_ strmode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name str
- policy_
engine_ strmode - Allowed values: -
all
-any
Defaults toany
. - source_
plex_ 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.
- client
Id String - plex
Token String - slug String
- allow
Friends Boolean - Defaults to
true
. - allowed
Servers List<String> - authentication
Flow String - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - source
Plex 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 SourcePlex resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SourcePlex Resource
Get an existing SourcePlex 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?: SourcePlexState, opts?: CustomResourceOptions): SourcePlex
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_friends: Optional[bool] = None,
allowed_servers: Optional[Sequence[str]] = None,
authentication_flow: Optional[str] = None,
client_id: Optional[str] = None,
enabled: Optional[bool] = None,
enrollment_flow: Optional[str] = None,
group_matching_mode: Optional[str] = None,
name: Optional[str] = None,
plex_token: Optional[str] = None,
policy_engine_mode: Optional[str] = None,
slug: Optional[str] = None,
source_plex_id: Optional[str] = None,
user_matching_mode: Optional[str] = None,
user_path_template: Optional[str] = None,
uuid: Optional[str] = None) -> SourcePlex
func GetSourcePlex(ctx *Context, name string, id IDInput, state *SourcePlexState, opts ...ResourceOption) (*SourcePlex, error)
public static SourcePlex Get(string name, Input<string> id, SourcePlexState? state, CustomResourceOptions? opts = null)
public static SourcePlex get(String name, Output<String> id, SourcePlexState state, CustomResourceOptions options)
resources: _: type: authentik:SourcePlex 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.
- Allow
Friends bool - Defaults to
true
. - Allowed
Servers List<string> - Authentication
Flow string - Client
Id string - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Plex
Token string - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Slug string
- Source
Plex 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.
- Allow
Friends bool - Defaults to
true
. - Allowed
Servers []string - Authentication
Flow string - Client
Id string - Enabled bool
- Defaults to
true
. - Enrollment
Flow string - Group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - Name string
- Plex
Token string - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Slug string
- Source
Plex 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.
- allow
Friends Boolean - Defaults to
true
. - allowed
Servers List<String> - authentication
Flow String - client
Id String - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- plex
Token String - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - slug String
- source
Plex 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.
- allow
Friends boolean - Defaults to
true
. - allowed
Servers string[] - authentication
Flow string - client
Id string - enabled boolean
- Defaults to
true
. - enrollment
Flow string - group
Matching stringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name string
- plex
Token string - policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - slug string
- source
Plex 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.
- allow_
friends bool - Defaults to
true
. - allowed_
servers Sequence[str] - authentication_
flow str - client_
id str - enabled bool
- Defaults to
true
. - enrollment_
flow str - group_
matching_ strmode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name str
- plex_
token str - policy_
engine_ strmode - Allowed values: -
all
-any
Defaults toany
. - slug str
- source_
plex_ 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.
- allow
Friends Boolean - Defaults to
true
. - allowed
Servers List<String> - authentication
Flow String - client
Id String - enabled Boolean
- Defaults to
true
. - enrollment
Flow String - group
Matching StringMode - Allowed values: -
identifier
-name_link
-name_deny
Defaults toidentifier
. - name String
- plex
Token String - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - slug String
- source
Plex 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.