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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
var providerSsfResource = new ProviderSsf("providerSsfResource", ProviderSsfArgs.builder()
.eventRetention("string")
.jwtFederationProviders(0)
.name("string")
.providerSsfId("string")
.signingKey("string")
.build());
provider_ssf_resource = authentik.ProviderSsf("providerSsfResource",
event_retention="string",
jwt_federation_providers=[0],
name="string",
provider_ssf_id="string",
signing_key="string")
const providerSsfResource = new authentik.ProviderSsf("providerSsfResource", {
eventRetention: "string",
jwtFederationProviders: [0],
name: "string",
providerSsfId: "string",
signingKey: "string",
});
type: authentik:ProviderSsf
properties:
eventRetention: string
jwtFederationProviders:
- 0
name: string
providerSsfId: string
signingKey: string
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:
- Event
Retention string - Defaults to
days=30
. - Jwt
Federation List<double>Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- Name string
- Provider
Ssf stringId - The ID of this resource.
- Signing
Key string
- Event
Retention string - Defaults to
days=30
. - Jwt
Federation []float64Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- Name string
- Provider
Ssf stringId - The ID of this resource.
- Signing
Key string
- event
Retention String - Defaults to
days=30
. - jwt
Federation List<Double>Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name String
- provider
Ssf StringId - The ID of this resource.
- signing
Key String
- event
Retention string - Defaults to
days=30
. - jwt
Federation number[]Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name string
- provider
Ssf stringId - The ID of this resource.
- signing
Key string
- event_
retention str - Defaults to
days=30
. - jwt_
federation_ Sequence[float]providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name str
- provider_
ssf_ strid - The ID of this resource.
- signing_
key str
- event
Retention String - Defaults to
days=30
. - jwt
Federation List<Number>Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name String
- provider
Ssf StringId - The ID of this resource.
- signing
Key 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
- 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.
- Event
Retention string - Defaults to
days=30
. - Jwt
Federation List<double>Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- Name string
- Provider
Ssf stringId - The ID of this resource.
- Signing
Key string
- Event
Retention string - Defaults to
days=30
. - Jwt
Federation []float64Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- Name string
- Provider
Ssf stringId - The ID of this resource.
- Signing
Key string
- event
Retention String - Defaults to
days=30
. - jwt
Federation List<Double>Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name String
- provider
Ssf StringId - The ID of this resource.
- signing
Key String
- event
Retention string - Defaults to
days=30
. - jwt
Federation number[]Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name string
- provider
Ssf stringId - The ID of this resource.
- signing
Key string
- event_
retention str - Defaults to
days=30
. - jwt_
federation_ Sequence[float]providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name str
- provider_
ssf_ strid - The ID of this resource.
- signing_
key str
- event
Retention String - Defaults to
days=30
. - jwt
Federation List<Number>Providers - JWTs issued by any of the configured providers can be used to authenticate on behalf of this provider.
- name String
- provider
Ssf StringId - The ID of this resource.
- signing
Key String
Package Details
- Repository
- authentik goauthentik/terraform-provider-authentik
- License
- Notes
- This Pulumi package is based on the
authentik
Terraform Provider.