Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as authentik from "@pulumi/authentik";
// Modify the schedule of a SCIM provider
const name = new authentik.ProviderScim("name", {
name: "name",
url: "http://localhost",
token: "foo",
});
const _default = new authentik.TaskSchedule("default", {
appModel: "authentik_providers_scim.scimprovider",
modelId: name.providerScimId,
crontab: "6 */4 * * 2",
});
import pulumi
import pulumi_authentik as authentik
# Modify the schedule of a SCIM provider
name = authentik.ProviderScim("name",
name="name",
url="http://localhost",
token="foo")
default = authentik.TaskSchedule("default",
app_model="authentik_providers_scim.scimprovider",
model_id=name.provider_scim_id,
crontab="6 */4 * * 2")
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 {
// Modify the schedule of a SCIM provider
name, err := authentik.NewProviderScim(ctx, "name", &authentik.ProviderScimArgs{
Name: pulumi.String("name"),
Url: pulumi.String("http://localhost"),
Token: pulumi.String("foo"),
})
if err != nil {
return err
}
_, err = authentik.NewTaskSchedule(ctx, "default", &authentik.TaskScheduleArgs{
AppModel: pulumi.String("authentik_providers_scim.scimprovider"),
ModelId: name.ProviderScimId,
Crontab: pulumi.String("6 */4 * * 2"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Authentik = Pulumi.Authentik;
return await Deployment.RunAsync(() =>
{
// Modify the schedule of a SCIM provider
var name = new Authentik.ProviderScim("name", new()
{
Name = "name",
Url = "http://localhost",
Token = "foo",
});
var @default = new Authentik.TaskSchedule("default", new()
{
AppModel = "authentik_providers_scim.scimprovider",
ModelId = name.ProviderScimId,
Crontab = "6 */4 * * 2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.authentik.ProviderScim;
import com.pulumi.authentik.ProviderScimArgs;
import com.pulumi.authentik.TaskSchedule;
import com.pulumi.authentik.TaskScheduleArgs;
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) {
// Modify the schedule of a SCIM provider
var name = new ProviderScim("name", ProviderScimArgs.builder()
.name("name")
.url("http://localhost")
.token("foo")
.build());
var default_ = new TaskSchedule("default", TaskScheduleArgs.builder()
.appModel("authentik_providers_scim.scimprovider")
.modelId(name.providerScimId())
.crontab("6 */4 * * 2")
.build());
}
}
resources:
# Modify the schedule of a SCIM provider
name:
type: authentik:ProviderScim
properties:
name: name
url: http://localhost
token: foo
default:
type: authentik:TaskSchedule
properties:
appModel: authentik_providers_scim.scimprovider
modelId: ${name.providerScimId}
crontab: 6 */4 * * 2
Create TaskSchedule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TaskSchedule(name: string, args: TaskScheduleArgs, opts?: CustomResourceOptions);@overload
def TaskSchedule(resource_name: str,
args: TaskScheduleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TaskSchedule(resource_name: str,
opts: Optional[ResourceOptions] = None,
app_model: Optional[str] = None,
crontab: Optional[str] = None,
model_id: Optional[str] = None,
paused: Optional[bool] = None,
task_schedule_id: Optional[str] = None)func NewTaskSchedule(ctx *Context, name string, args TaskScheduleArgs, opts ...ResourceOption) (*TaskSchedule, error)public TaskSchedule(string name, TaskScheduleArgs args, CustomResourceOptions? opts = null)
public TaskSchedule(String name, TaskScheduleArgs args)
public TaskSchedule(String name, TaskScheduleArgs args, CustomResourceOptions options)
type: authentik:TaskSchedule
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 TaskScheduleArgs
- 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 TaskScheduleArgs
- 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 TaskScheduleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TaskScheduleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TaskScheduleArgs
- 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 taskScheduleResource = new Authentik.TaskSchedule("taskScheduleResource", new()
{
AppModel = "string",
Crontab = "string",
ModelId = "string",
Paused = false,
TaskScheduleId = "string",
});
example, err := authentik.NewTaskSchedule(ctx, "taskScheduleResource", &authentik.TaskScheduleArgs{
AppModel: pulumi.String("string"),
Crontab: pulumi.String("string"),
ModelId: pulumi.String("string"),
Paused: pulumi.Bool(false),
TaskScheduleId: pulumi.String("string"),
})
var taskScheduleResource = new TaskSchedule("taskScheduleResource", TaskScheduleArgs.builder()
.appModel("string")
.crontab("string")
.modelId("string")
.paused(false)
.taskScheduleId("string")
.build());
task_schedule_resource = authentik.TaskSchedule("taskScheduleResource",
app_model="string",
crontab="string",
model_id="string",
paused=False,
task_schedule_id="string")
const taskScheduleResource = new authentik.TaskSchedule("taskScheduleResource", {
appModel: "string",
crontab: "string",
modelId: "string",
paused: false,
taskScheduleId: "string",
});
type: authentik:TaskSchedule
properties:
appModel: string
crontab: string
modelId: string
paused: false
taskScheduleId: string
TaskSchedule 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 TaskSchedule resource accepts the following input properties:
- App
Model string - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- Crontab string
- Crontab expression at which this task will run.
- Model
Id string - Paused bool
- Defaults to
false. - Task
Schedule stringId
- App
Model string - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- Crontab string
- Crontab expression at which this task will run.
- Model
Id string - Paused bool
- Defaults to
false. - Task
Schedule stringId
- app
Model String - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab String
- Crontab expression at which this task will run.
- model
Id String - paused Boolean
- Defaults to
false. - task
Schedule StringId
- app
Model string - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab string
- Crontab expression at which this task will run.
- model
Id string - paused boolean
- Defaults to
false. - task
Schedule stringId
- app_
model str - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab str
- Crontab expression at which this task will run.
- model_
id str - paused bool
- Defaults to
false. - task_
schedule_ strid
- app
Model String - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab String
- Crontab expression at which this task will run.
- model
Id String - paused Boolean
- Defaults to
false. - task
Schedule StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the TaskSchedule 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 TaskSchedule Resource
Get an existing TaskSchedule 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?: TaskScheduleState, opts?: CustomResourceOptions): TaskSchedule@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_model: Optional[str] = None,
crontab: Optional[str] = None,
model_id: Optional[str] = None,
paused: Optional[bool] = None,
task_schedule_id: Optional[str] = None) -> TaskSchedulefunc GetTaskSchedule(ctx *Context, name string, id IDInput, state *TaskScheduleState, opts ...ResourceOption) (*TaskSchedule, error)public static TaskSchedule Get(string name, Input<string> id, TaskScheduleState? state, CustomResourceOptions? opts = null)public static TaskSchedule get(String name, Output<String> id, TaskScheduleState state, CustomResourceOptions options)resources: _: type: authentik:TaskSchedule 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.
- App
Model string - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- Crontab string
- Crontab expression at which this task will run.
- Model
Id string - Paused bool
- Defaults to
false. - Task
Schedule stringId
- App
Model string - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- Crontab string
- Crontab expression at which this task will run.
- Model
Id string - Paused bool
- Defaults to
false. - Task
Schedule stringId
- app
Model String - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab String
- Crontab expression at which this task will run.
- model
Id String - paused Boolean
- Defaults to
false. - task
Schedule StringId
- app
Model string - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab string
- Crontab expression at which this task will run.
- model
Id string - paused boolean
- Defaults to
false. - task
Schedule stringId
- app_
model str - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab str
- Crontab expression at which this task will run.
- model_
id str - paused bool
- Defaults to
false. - task_
schedule_ strid
- app
Model String - Allowed values:
authentik_tenants.domainauthentik_core.groupauthentik_core.userauthentik_core.applicationauthentik_core.applicationentitlementauthentik_core.tokenauthentik_crypto.certificatekeypairauthentik_endpoints.deviceuserbindingauthentik_endpoints.deviceaccessgroupauthentik_endpoints.endpointstageauthentik_endpoints_connectors_agent.agentconnectorauthentik_endpoints_connectors_agent.agentdeviceuserbindingauthentik_endpoints_connectors_agent.enrollmenttokenauthentik_enterprise.licenseauthentik_events.eventauthentik_events.notificationtransportauthentik_events.notificationauthentik_events.notificationruleauthentik_events.notificationwebhookmappingauthentik_flows.flowauthentik_flows.flowstagebindingauthentik_outposts.dockerserviceconnectionauthentik_outposts.kubernetesserviceconnectionauthentik_outposts.outpostauthentik_policies_dummy.dummypolicyauthentik_policies_event_matcher.eventmatcherpolicyauthentik_policies_expiry.passwordexpirypolicyauthentik_policies_expression.expressionpolicyauthentik_policies_geoip.geoippolicyauthentik_policies_password.passwordpolicyauthentik_policies_reputation.reputationpolicyauthentik_policies.policybindingauthentik_providers_ldap.ldapproviderauthentik_providers_oauth2.scopemappingauthentik_providers_oauth2.oauth2providerauthentik_providers_proxy.proxyproviderauthentik_providers_rac.racproviderauthentik_providers_rac.endpointauthentik_providers_rac.racpropertymappingauthentik_providers_radius.radiusproviderauthentik_providers_radius.radiusproviderpropertymappingauthentik_providers_saml.samlproviderauthentik_providers_saml.samlpropertymappingauthentik_providers_scim.scimproviderauthentik_providers_scim.scimmappingauthentik_rbac.roleauthentik_rbac.initialpermissionsauthentik_sources_kerberos.kerberossourceauthentik_sources_kerberos.kerberossourcepropertymappingauthentik_sources_kerberos.userkerberossourceconnectionauthentik_sources_kerberos.groupkerberossourceconnectionauthentik_sources_ldap.ldapsourceauthentik_sources_ldap.ldapsourcepropertymappingauthentik_sources_ldap.userldapsourceconnectionauthentik_sources_ldap.groupldapsourceconnectionauthentik_sources_oauth.oauthsourceauthentik_sources_oauth.oauthsourcepropertymappingauthentik_sources_oauth.useroauthsourceconnectionauthentik_sources_oauth.groupoauthsourceconnectionauthentik_sources_plex.plexsourceauthentik_sources_plex.plexsourcepropertymappingauthentik_sources_plex.userplexsourceconnectionauthentik_sources_plex.groupplexsourceconnectionauthentik_sources_saml.samlsourceauthentik_sources_saml.samlsourcepropertymappingauthentik_sources_saml.usersamlsourceconnectionauthentik_sources_saml.groupsamlsourceconnectionauthentik_sources_scim.scimsourceauthentik_sources_scim.scimsourcepropertymappingauthentik_sources_telegram.telegramsourceauthentik_sources_telegram.telegramsourcepropertymappingauthentik_sources_telegram.usertelegramsourceconnectionauthentik_sources_telegram.grouptelegramsourceconnectionauthentik_stages_authenticator_duo.authenticatorduostageauthentik_stages_authenticator_duo.duodeviceauthentik_stages_authenticator_email.authenticatoremailstageauthentik_stages_authenticator_email.emaildeviceauthentik_stages_authenticator_sms.authenticatorsmsstageauthentik_stages_authenticator_sms.smsdeviceauthentik_stages_authenticator_static.authenticatorstaticstageauthentik_stages_authenticator_static.staticdeviceauthentik_stages_authenticator_totp.authenticatortotpstageauthentik_stages_authenticator_totp.totpdeviceauthentik_stages_authenticator_validate.authenticatorvalidatestageauthentik_stages_authenticator_webauthn.authenticatorwebauthnstageauthentik_stages_authenticator_webauthn.webauthndeviceauthentik_stages_captcha.captchastageauthentik_stages_consent.consentstageauthentik_stages_deny.denystageauthentik_stages_dummy.dummystageauthentik_stages_email.emailstageauthentik_stages_identification.identificationstageauthentik_stages_invitation.invitationstageauthentik_stages_invitation.invitationauthentik_stages_password.passwordstageauthentik_stages_prompt.promptauthentik_stages_prompt.promptstageauthentik_stages_redirect.redirectstageauthentik_stages_user_delete.userdeletestageauthentik_stages_user_login.userloginstageauthentik_stages_user_logout.userlogoutstageauthentik_stages_user_write.userwritestageauthentik_tasks_schedules.scheduleauthentik_brands.brandauthentik_blueprints.blueprintinstanceauthentik_policies_unique_password.uniquepasswordpolicyauthentik_providers_google_workspace.googleworkspaceproviderauthentik_providers_google_workspace.googleworkspaceprovidermappingauthentik_providers_microsoft_entra.microsoftentraproviderauthentik_providers_microsoft_entra.microsoftentraprovidermappingauthentik_providers_ssf.ssfproviderauthentik_reports.dataexportauthentik_stages_authenticator_endpoint_gdtc.authenticatorendpointgdtcstageauthentik_stages_mtls.mutualtlsstageauthentik_stages_source.sourcestage
- crontab String
- Crontab expression at which this task will run.
- model
Id String - paused Boolean
- Defaults to
false. - task
Schedule StringId
Package Details
- Repository
- authentik goauthentik/terraform-provider-authentik
- License
- Notes
- This Pulumi package is based on the
authentikTerraform Provider.
