authentik.FlowStageBinding
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as authentik from "@pulumi/authentik";
// Create a flow with a stage attached
const name = new authentik.StageDummy("name", {});
const flow = new authentik.Flow("flow", {
title: "Test flow",
slug: "test-flow",
designation: "authorization",
});
const dummy_flow = new authentik.FlowStageBinding("dummy-flow", {
target: flow.uuid,
stage: name.stageDummyId,
order: 0,
});
import pulumi
import pulumi_authentik as authentik
# Create a flow with a stage attached
name = authentik.StageDummy("name")
flow = authentik.Flow("flow",
title="Test flow",
slug="test-flow",
designation="authorization")
dummy_flow = authentik.FlowStageBinding("dummy-flow",
target=flow.uuid,
stage=name.stage_dummy_id,
order=0)
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 {
// Create a flow with a stage attached
name, err := authentik.NewStageDummy(ctx, "name", nil)
if err != nil {
return err
}
flow, err := authentik.NewFlow(ctx, "flow", &authentik.FlowArgs{
Title: pulumi.String("Test flow"),
Slug: pulumi.String("test-flow"),
Designation: pulumi.String("authorization"),
})
if err != nil {
return err
}
_, err = authentik.NewFlowStageBinding(ctx, "dummy-flow", &authentik.FlowStageBindingArgs{
Target: flow.Uuid,
Stage: name.StageDummyId,
Order: pulumi.Float64(0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Authentik = Pulumi.Authentik;
return await Deployment.RunAsync(() =>
{
// Create a flow with a stage attached
var name = new Authentik.StageDummy("name");
var flow = new Authentik.Flow("flow", new()
{
Title = "Test flow",
Slug = "test-flow",
Designation = "authorization",
});
var dummy_flow = new Authentik.FlowStageBinding("dummy-flow", new()
{
Target = flow.Uuid,
Stage = name.StageDummyId,
Order = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.authentik.StageDummy;
import com.pulumi.authentik.Flow;
import com.pulumi.authentik.FlowArgs;
import com.pulumi.authentik.FlowStageBinding;
import com.pulumi.authentik.FlowStageBindingArgs;
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) {
// Create a flow with a stage attached
var name = new StageDummy("name");
var flow = new Flow("flow", FlowArgs.builder()
.title("Test flow")
.slug("test-flow")
.designation("authorization")
.build());
var dummy_flow = new FlowStageBinding("dummy-flow", FlowStageBindingArgs.builder()
.target(flow.uuid())
.stage(name.stageDummyId())
.order(0)
.build());
}
}
resources:
# Create a flow with a stage attached
name:
type: authentik:StageDummy
flow:
type: authentik:Flow
properties:
title: Test flow
slug: test-flow
designation: authorization
dummy-flow:
type: authentik:FlowStageBinding
properties:
target: ${flow.uuid}
stage: ${name.stageDummyId}
order: 0
Create FlowStageBinding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FlowStageBinding(name: string, args: FlowStageBindingArgs, opts?: CustomResourceOptions);
@overload
def FlowStageBinding(resource_name: str,
args: FlowStageBindingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FlowStageBinding(resource_name: str,
opts: Optional[ResourceOptions] = None,
order: Optional[float] = None,
stage: Optional[str] = None,
target: Optional[str] = None,
evaluate_on_plan: Optional[bool] = None,
flow_stage_binding_id: Optional[str] = None,
invalid_response_action: Optional[str] = None,
policy_engine_mode: Optional[str] = None,
re_evaluate_policies: Optional[bool] = None)
func NewFlowStageBinding(ctx *Context, name string, args FlowStageBindingArgs, opts ...ResourceOption) (*FlowStageBinding, error)
public FlowStageBinding(string name, FlowStageBindingArgs args, CustomResourceOptions? opts = null)
public FlowStageBinding(String name, FlowStageBindingArgs args)
public FlowStageBinding(String name, FlowStageBindingArgs args, CustomResourceOptions options)
type: authentik:FlowStageBinding
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 FlowStageBindingArgs
- 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 FlowStageBindingArgs
- 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 FlowStageBindingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FlowStageBindingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FlowStageBindingArgs
- 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 flowStageBindingResource = new Authentik.FlowStageBinding("flowStageBindingResource", new()
{
Order = 0,
Stage = "string",
Target = "string",
EvaluateOnPlan = false,
FlowStageBindingId = "string",
InvalidResponseAction = "string",
PolicyEngineMode = "string",
ReEvaluatePolicies = false,
});
example, err := authentik.NewFlowStageBinding(ctx, "flowStageBindingResource", &authentik.FlowStageBindingArgs{
Order: pulumi.Float64(0),
Stage: pulumi.String("string"),
Target: pulumi.String("string"),
EvaluateOnPlan: pulumi.Bool(false),
FlowStageBindingId: pulumi.String("string"),
InvalidResponseAction: pulumi.String("string"),
PolicyEngineMode: pulumi.String("string"),
ReEvaluatePolicies: pulumi.Bool(false),
})
var flowStageBindingResource = new FlowStageBinding("flowStageBindingResource", FlowStageBindingArgs.builder()
.order(0)
.stage("string")
.target("string")
.evaluateOnPlan(false)
.flowStageBindingId("string")
.invalidResponseAction("string")
.policyEngineMode("string")
.reEvaluatePolicies(false)
.build());
flow_stage_binding_resource = authentik.FlowStageBinding("flowStageBindingResource",
order=0,
stage="string",
target="string",
evaluate_on_plan=False,
flow_stage_binding_id="string",
invalid_response_action="string",
policy_engine_mode="string",
re_evaluate_policies=False)
const flowStageBindingResource = new authentik.FlowStageBinding("flowStageBindingResource", {
order: 0,
stage: "string",
target: "string",
evaluateOnPlan: false,
flowStageBindingId: "string",
invalidResponseAction: "string",
policyEngineMode: "string",
reEvaluatePolicies: false,
});
type: authentik:FlowStageBinding
properties:
evaluateOnPlan: false
flowStageBindingId: string
invalidResponseAction: string
order: 0
policyEngineMode: string
reEvaluatePolicies: false
stage: string
target: string
FlowStageBinding 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 FlowStageBinding resource accepts the following input properties:
- Order double
- Stage string
- Target string
- Evaluate
On boolPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - Flow
Stage stringBinding Id - Invalid
Response stringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Re
Evaluate boolPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
.
- Order float64
- Stage string
- Target string
- Evaluate
On boolPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - Flow
Stage stringBinding Id - Invalid
Response stringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Re
Evaluate boolPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
.
- order Double
- stage String
- target String
- evaluate
On BooleanPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow
Stage StringBinding Id - invalid
Response StringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - re
Evaluate BooleanPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
.
- order number
- stage string
- target string
- evaluate
On booleanPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow
Stage stringBinding Id - invalid
Response stringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - re
Evaluate booleanPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
.
- order float
- stage str
- target str
- evaluate_
on_ boolplan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow_
stage_ strbinding_ id - invalid_
response_ straction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - policy_
engine_ strmode - Allowed values: -
all
-any
Defaults toany
. - re_
evaluate_ boolpolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
.
- order Number
- stage String
- target String
- evaluate
On BooleanPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow
Stage StringBinding Id - invalid
Response StringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - re
Evaluate BooleanPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
.
Outputs
All input properties are implicitly available as output properties. Additionally, the FlowStageBinding 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 FlowStageBinding Resource
Get an existing FlowStageBinding 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?: FlowStageBindingState, opts?: CustomResourceOptions): FlowStageBinding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
evaluate_on_plan: Optional[bool] = None,
flow_stage_binding_id: Optional[str] = None,
invalid_response_action: Optional[str] = None,
order: Optional[float] = None,
policy_engine_mode: Optional[str] = None,
re_evaluate_policies: Optional[bool] = None,
stage: Optional[str] = None,
target: Optional[str] = None) -> FlowStageBinding
func GetFlowStageBinding(ctx *Context, name string, id IDInput, state *FlowStageBindingState, opts ...ResourceOption) (*FlowStageBinding, error)
public static FlowStageBinding Get(string name, Input<string> id, FlowStageBindingState? state, CustomResourceOptions? opts = null)
public static FlowStageBinding get(String name, Output<String> id, FlowStageBindingState state, CustomResourceOptions options)
resources: _: type: authentik:FlowStageBinding 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.
- Evaluate
On boolPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - Flow
Stage stringBinding Id - Invalid
Response stringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - Order double
- Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Re
Evaluate boolPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
. - Stage string
- Target string
- Evaluate
On boolPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - Flow
Stage stringBinding Id - Invalid
Response stringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - Order float64
- Policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - Re
Evaluate boolPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
. - Stage string
- Target string
- evaluate
On BooleanPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow
Stage StringBinding Id - invalid
Response StringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - order Double
- policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - re
Evaluate BooleanPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
. - stage String
- target String
- evaluate
On booleanPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow
Stage stringBinding Id - invalid
Response stringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - order number
- policy
Engine stringMode - Allowed values: -
all
-any
Defaults toany
. - re
Evaluate booleanPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
. - stage string
- target string
- evaluate_
on_ boolplan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow_
stage_ strbinding_ id - invalid_
response_ straction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - order float
- policy_
engine_ strmode - Allowed values: -
all
-any
Defaults toany
. - re_
evaluate_ boolpolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
. - stage str
- target str
- evaluate
On BooleanPlan - Evaluate policies during the Flow planning process. Defaults to
true
. - flow
Stage StringBinding Id - invalid
Response StringAction - Allowed values: -
retry
-restart
-restart_with_context
Defaults toretry
. - order Number
- policy
Engine StringMode - Allowed values: -
all
-any
Defaults toany
. - re
Evaluate BooleanPolicies - Evaluate policies when the Stage is present to the user. Defaults to
false
. - stage String
- target String
Package Details
- Repository
- authentik goauthentik/terraform-provider-authentik
- License
- Notes
- This Pulumi package is based on the
authentik
Terraform Provider.