1. Packages
  2. StrongDM
  3. API Docs
  4. getWorkflow
StrongDM v1.26.0 published on Friday, Mar 21, 2025 by Piers Karsenbarg

sdm.getWorkflow

Explore with Pulumi AI

StrongDM v1.26.0 published on Friday, Mar 21, 2025 by Piers Karsenbarg

Workflows are the collection of rules that define the resources to which access can be requested, the users that can request that access, and the mechanism for approving those requests which can either but automatic approval or a set of users authorized to approve the requests.

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdm.SdmFunctions;
import com.pulumi.sdm.inputs.GetWorkflowArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var workflowQuery = SdmFunctions.getWorkflow(GetWorkflowArgs.builder()
            .approvalMode("automatic")
            .name("workflow example")
            .build());

    }
}
Copy
variables:
  workflowQuery:
    fn::invoke:
      function: sdm:getWorkflow
      arguments:
        approvalMode: automatic
        name: workflow example
Copy

Using getWorkflow

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getWorkflow(args: GetWorkflowArgs, opts?: InvokeOptions): Promise<GetWorkflowResult>
function getWorkflowOutput(args: GetWorkflowOutputArgs, opts?: InvokeOptions): Output<GetWorkflowResult>
Copy
def get_workflow(access_request_fixed_duration: Optional[str] = None,
                 access_request_max_duration: Optional[str] = None,
                 approval_flow_id: Optional[str] = None,
                 auto_grant: Optional[bool] = None,
                 description: Optional[str] = None,
                 enabled: Optional[bool] = None,
                 id: Optional[str] = None,
                 name: Optional[str] = None,
                 weight: Optional[int] = None,
                 opts: Optional[InvokeOptions] = None) -> GetWorkflowResult
def get_workflow_output(access_request_fixed_duration: Optional[pulumi.Input[str]] = None,
                 access_request_max_duration: Optional[pulumi.Input[str]] = None,
                 approval_flow_id: Optional[pulumi.Input[str]] = None,
                 auto_grant: Optional[pulumi.Input[bool]] = None,
                 description: Optional[pulumi.Input[str]] = None,
                 enabled: Optional[pulumi.Input[bool]] = None,
                 id: Optional[pulumi.Input[str]] = None,
                 name: Optional[pulumi.Input[str]] = None,
                 weight: Optional[pulumi.Input[int]] = None,
                 opts: Optional[InvokeOptions] = None) -> Output[GetWorkflowResult]
Copy
func LookupWorkflow(ctx *Context, args *LookupWorkflowArgs, opts ...InvokeOption) (*LookupWorkflowResult, error)
func LookupWorkflowOutput(ctx *Context, args *LookupWorkflowOutputArgs, opts ...InvokeOption) LookupWorkflowResultOutput
Copy

> Note: This function is named LookupWorkflow in the Go SDK.

public static class GetWorkflow 
{
    public static Task<GetWorkflowResult> InvokeAsync(GetWorkflowArgs args, InvokeOptions? opts = null)
    public static Output<GetWorkflowResult> Invoke(GetWorkflowInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetWorkflowResult> getWorkflow(GetWorkflowArgs args, InvokeOptions options)
public static Output<GetWorkflowResult> getWorkflow(GetWorkflowArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: sdm:index/getWorkflow:getWorkflow
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

AccessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
ApprovalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
AutoGrant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
Description string
Optional description of the Workflow.
Enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
Id string
Unique identifier of the Workflow.
Name string
Unique human-readable name of the Workflow.
Weight int
Optional weight for workflow to specify it's priority in matching a request.
AccessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
ApprovalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
AutoGrant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
Description string
Optional description of the Workflow.
Enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
Id string
Unique identifier of the Workflow.
Name string
Unique human-readable name of the Workflow.
Weight int
Optional weight for workflow to specify it's priority in matching a request.
accessRequestFixedDuration String
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration String
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approvalFlowId String
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant Boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description String
Optional description of the Workflow.
enabled Boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id String
Unique identifier of the Workflow.
name String
Unique human-readable name of the Workflow.
weight Integer
Optional weight for workflow to specify it's priority in matching a request.
accessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approvalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description string
Optional description of the Workflow.
enabled boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id string
Unique identifier of the Workflow.
name string
Unique human-readable name of the Workflow.
weight number
Optional weight for workflow to specify it's priority in matching a request.
access_request_fixed_duration str
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
access_request_max_duration str
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approval_flow_id str
Optional approval flow ID identifies an approval flow that linked to the workflow
auto_grant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
description str
Optional description of the Workflow.
enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id str
Unique identifier of the Workflow.
name str
Unique human-readable name of the Workflow.
weight int
Optional weight for workflow to specify it's priority in matching a request.
accessRequestFixedDuration String
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration String
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approvalFlowId String
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant Boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description String
Optional description of the Workflow.
enabled Boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id String
Unique identifier of the Workflow.
name String
Unique human-readable name of the Workflow.
weight Number
Optional weight for workflow to specify it's priority in matching a request.

getWorkflow Result

The following output properties are available:

Ids List<string>
a list of strings of ids of data sources that match the given arguments.
Workflows List<PiersKarsenbarg.Sdm.Outputs.GetWorkflowWorkflow>
A list where each element has the following attributes:
AccessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
ApprovalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
AutoGrant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
Description string
Optional description of the Workflow.
Enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
Id string
Unique identifier of the Workflow.
Name string
Unique human-readable name of the Workflow.
Weight int
Optional weight for workflow to specify it's priority in matching a request.
Ids []string
a list of strings of ids of data sources that match the given arguments.
Workflows []GetWorkflowWorkflow
A list where each element has the following attributes:
AccessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
ApprovalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
AutoGrant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
Description string
Optional description of the Workflow.
Enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
Id string
Unique identifier of the Workflow.
Name string
Unique human-readable name of the Workflow.
Weight int
Optional weight for workflow to specify it's priority in matching a request.
ids List<String>
a list of strings of ids of data sources that match the given arguments.
workflows List<GetWorkflowWorkflow>
A list where each element has the following attributes:
accessRequestFixedDuration String
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration String
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approvalFlowId String
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant Boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description String
Optional description of the Workflow.
enabled Boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id String
Unique identifier of the Workflow.
name String
Unique human-readable name of the Workflow.
weight Integer
Optional weight for workflow to specify it's priority in matching a request.
ids string[]
a list of strings of ids of data sources that match the given arguments.
workflows GetWorkflowWorkflow[]
A list where each element has the following attributes:
accessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approvalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description string
Optional description of the Workflow.
enabled boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id string
Unique identifier of the Workflow.
name string
Unique human-readable name of the Workflow.
weight number
Optional weight for workflow to specify it's priority in matching a request.
ids Sequence[str]
a list of strings of ids of data sources that match the given arguments.
workflows Sequence[GetWorkflowWorkflow]
A list where each element has the following attributes:
access_request_fixed_duration str
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
access_request_max_duration str
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approval_flow_id str
Optional approval flow ID identifies an approval flow that linked to the workflow
auto_grant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
description str
Optional description of the Workflow.
enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id str
Unique identifier of the Workflow.
name str
Unique human-readable name of the Workflow.
weight int
Optional weight for workflow to specify it's priority in matching a request.
ids List<String>
a list of strings of ids of data sources that match the given arguments.
workflows List<Property Map>
A list where each element has the following attributes:
accessRequestFixedDuration String
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration String
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
approvalFlowId String
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant Boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description String
Optional description of the Workflow.
enabled Boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id String
Unique identifier of the Workflow.
name String
Unique human-readable name of the Workflow.
weight Number
Optional weight for workflow to specify it's priority in matching a request.

Supporting Types

GetWorkflowWorkflow

AccessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRules string
AccessRules is a list of access rules defining the resources this Workflow provides access to.
ApprovalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
AutoGrant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
Description string
Optional description of the Workflow.
Enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
Id string
Unique identifier of the Workflow.
Name string
Unique human-readable name of the Workflow.
Weight int
Optional weight for workflow to specify it's priority in matching a request.
AccessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
AccessRules string
AccessRules is a list of access rules defining the resources this Workflow provides access to.
ApprovalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
AutoGrant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
Description string
Optional description of the Workflow.
Enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
Id string
Unique identifier of the Workflow.
Name string
Unique human-readable name of the Workflow.
Weight int
Optional weight for workflow to specify it's priority in matching a request.
accessRequestFixedDuration String
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration String
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRules String
AccessRules is a list of access rules defining the resources this Workflow provides access to.
approvalFlowId String
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant Boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description String
Optional description of the Workflow.
enabled Boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id String
Unique identifier of the Workflow.
name String
Unique human-readable name of the Workflow.
weight Integer
Optional weight for workflow to specify it's priority in matching a request.
accessRequestFixedDuration string
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration string
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRules string
AccessRules is a list of access rules defining the resources this Workflow provides access to.
approvalFlowId string
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description string
Optional description of the Workflow.
enabled boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id string
Unique identifier of the Workflow.
name string
Unique human-readable name of the Workflow.
weight number
Optional weight for workflow to specify it's priority in matching a request.
access_request_fixed_duration str
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
access_request_max_duration str
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
access_rules str
AccessRules is a list of access rules defining the resources this Workflow provides access to.
approval_flow_id str
Optional approval flow ID identifies an approval flow that linked to the workflow
auto_grant bool
Optional auto grant setting to automatically approve requests or not, defaults to false.
description str
Optional description of the Workflow.
enabled bool
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id str
Unique identifier of the Workflow.
name str
Unique human-readable name of the Workflow.
weight int
Optional weight for workflow to specify it's priority in matching a request.
accessRequestFixedDuration String
Fixed Duration of access requests bound to this workflow. If fixed duration is provided, max duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRequestMaxDuration String
Maximum Duration of access requests bound to this workflow. If max duration is provided, fixed duration must be empty. If neither max nor fixed duration are provided, requests that bind to this workflow will use the organization-level settings.
accessRules String
AccessRules is a list of access rules defining the resources this Workflow provides access to.
approvalFlowId String
Optional approval flow ID identifies an approval flow that linked to the workflow
autoGrant Boolean
Optional auto grant setting to automatically approve requests or not, defaults to false.
description String
Optional description of the Workflow.
enabled Boolean
Optional enabled state for workflow. This setting may be overridden by the system if the workflow doesn't meet the requirements to be enabled or if other conditions prevent enabling the workflow. The requirements to enable a workflow are that the workflow must be either set up for with auto grant enabled or have one or more WorkflowApprovers created for the workflow.
id String
Unique identifier of the Workflow.
name String
Unique human-readable name of the Workflow.
weight Number
Optional weight for workflow to specify it's priority in matching a request.

Package Details

Repository
sdm pierskarsenbarg/pulumi-sdm
License
Apache-2.0
Notes
This Pulumi package is based on the sdm Terraform Provider.
StrongDM v1.26.0 published on Friday, Mar 21, 2025 by Piers Karsenbarg