1. Packages
  2. Authentik Provider
  3. API Docs
  4. ProviderSsf
authentik 2025.2.0 published on Monday, Mar 24, 2025 by goauthentik

authentik.ProviderSsf

Explore with Pulumi AI

Create ProviderSsf Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ProviderSsf(name: string, args?: ProviderSsfArgs, opts?: CustomResourceOptions);
@overload
def ProviderSsf(resource_name: str,
                args: Optional[ProviderSsfArgs] = None,
                opts: Optional[ResourceOptions] = None)

@overload
def ProviderSsf(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                event_retention: Optional[str] = None,
                jwt_federation_providers: Optional[Sequence[float]] = None,
                name: Optional[str] = None,
                provider_ssf_id: Optional[str] = None,
                signing_key: Optional[str] = None)
func NewProviderSsf(ctx *Context, name string, args *ProviderSsfArgs, opts ...ResourceOption) (*ProviderSsf, error)
public ProviderSsf(string name, ProviderSsfArgs? args = null, CustomResourceOptions? opts = null)
public ProviderSsf(String name, ProviderSsfArgs args)
public ProviderSsf(String name, ProviderSsfArgs args, CustomResourceOptions options)
type: authentik:ProviderSsf
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ProviderSsfArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ProviderSsfArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ProviderSsfArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ProviderSsfArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ProviderSsfArgs
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 providerSsfResource = new Authentik.ProviderSsf("providerSsfResource", new()
{
    EventRetention = "string",
    JwtFederationProviders = new[]
    {
        0,
    },
    Name = "string",
    ProviderSsfId = "string",
    SigningKey = "string",
});
Copy
example, err := authentik.NewProviderSsf(ctx, "providerSsfResource", &authentik.ProviderSsfArgs{
	EventRetention: pulumi.String("string"),
	JwtFederationProviders: pulumi.Float64Array{
		pulumi.Float64(0),
	},
	Name:          pulumi.String("string"),
	ProviderSsfId: pulumi.String("string"),
	SigningKey:    pulumi.String("string"),
})
Copy
var providerSsfResource = new ProviderSsf("providerSsfResource", ProviderSsfArgs.builder()
    .eventRetention("string")
    .jwtFederationProviders(0)
    .name("string")
    .providerSsfId("string")
    .signingKey("string")
    .build());
Copy
provider_ssf_resource = authentik.ProviderSsf("providerSsfResource",
    event_retention="string",
    jwt_federation_providers=[0],
    name="string",
    provider_ssf_id="string",
    signing_key="string")
Copy
const providerSsfResource = new authentik.ProviderSsf("providerSsfResource", {
    eventRetention: "string",
    jwtFederationProviders: [0],
    name: "string",
    providerSsfId: "string",
    signingKey: "string",
});
Copy
type: authentik:ProviderSsf
properties:
    eventRetention: string
    jwtFederationProviders:
        - 0
    name: string
    providerSsfId: string
    signingKey: string
Copy

ProviderSsf 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 ProviderSsf resource accepts the following input properties:

EventRetention string
Defaults to days=30.
JwtFederationProviders List<double>
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
Name string
ProviderSsfId string
The ID of this resource.
SigningKey string
EventRetention string
Defaults to days=30.
JwtFederationProviders []float64
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
Name string
ProviderSsfId string
The ID of this resource.
SigningKey string
eventRetention String
Defaults to days=30.
jwtFederationProviders List<Double>
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name String
providerSsfId String
The ID of this resource.
signingKey String
eventRetention string
Defaults to days=30.
jwtFederationProviders number[]
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name string
providerSsfId string
The ID of this resource.
signingKey string
event_retention str
Defaults to days=30.
jwt_federation_providers Sequence[float]
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name str
provider_ssf_id str
The ID of this resource.
signing_key str
eventRetention String
Defaults to days=30.
jwtFederationProviders List<Number>
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name String
providerSsfId String
The ID of this resource.
signingKey String

Outputs

All input properties are implicitly available as output properties. Additionally, the ProviderSsf 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 ProviderSsf Resource

Get an existing ProviderSsf 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?: ProviderSsfState, opts?: CustomResourceOptions): ProviderSsf
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        event_retention: Optional[str] = None,
        jwt_federation_providers: Optional[Sequence[float]] = None,
        name: Optional[str] = None,
        provider_ssf_id: Optional[str] = None,
        signing_key: Optional[str] = None) -> ProviderSsf
func GetProviderSsf(ctx *Context, name string, id IDInput, state *ProviderSsfState, opts ...ResourceOption) (*ProviderSsf, error)
public static ProviderSsf Get(string name, Input<string> id, ProviderSsfState? state, CustomResourceOptions? opts = null)
public static ProviderSsf get(String name, Output<String> id, ProviderSsfState state, CustomResourceOptions options)
resources:  _:    type: authentik:ProviderSsf    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
EventRetention string
Defaults to days=30.
JwtFederationProviders List<double>
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
Name string
ProviderSsfId string
The ID of this resource.
SigningKey string
EventRetention string
Defaults to days=30.
JwtFederationProviders []float64
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
Name string
ProviderSsfId string
The ID of this resource.
SigningKey string
eventRetention String
Defaults to days=30.
jwtFederationProviders List<Double>
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name String
providerSsfId String
The ID of this resource.
signingKey String
eventRetention string
Defaults to days=30.
jwtFederationProviders number[]
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name string
providerSsfId string
The ID of this resource.
signingKey string
event_retention str
Defaults to days=30.
jwt_federation_providers Sequence[float]
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name str
provider_ssf_id str
The ID of this resource.
signing_key str
eventRetention String
Defaults to days=30.
jwtFederationProviders List<Number>
JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
name String
providerSsfId String
The ID of this resource.
signingKey String

Package Details

Repository
authentik goauthentik/terraform-provider-authentik
License
Notes
This Pulumi package is based on the authentik Terraform Provider.