1. Packages
  2. Azure Classic
  3. API Docs
  4. logicapps
  5. TriggerCustom

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Custom Trigger within a Logic App Workflow

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleWorkflow = new Azure.LogicApps.Workflow("exampleWorkflow", new Azure.LogicApps.WorkflowArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
            var exampleTriggerCustom = new Azure.LogicApps.TriggerCustom("exampleTriggerCustom", new Azure.LogicApps.TriggerCustomArgs
            {
                LogicAppId = exampleWorkflow.Id,
                Body = @"{
      ""recurrence"": {
        ""frequency"": ""Day"",
        ""interval"": 1
      },
      ""type"": ""Recurrence""
    }
    ",
            });
        }
    
    }
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/logicapps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleWorkflow, err := logicapps.NewWorkflow(ctx, "exampleWorkflow", &logicapps.WorkflowArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = logicapps.NewTriggerCustom(ctx, "exampleTriggerCustom", &logicapps.TriggerCustomArgs{
    			LogicAppId: exampleWorkflow.ID(),
    			Body:       pulumi.String(fmt.Sprintf("%v%v%v%v%v%v%v", "{\n", "  \"recurrence\": {\n", "    \"frequency\": \"Day\",\n", "    \"interval\": 1\n", "  },\n", "  \"type\": \"Recurrence\"\n", "}\n")),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleWorkflow = new azure.logicapps.Workflow("exampleWorkflow", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    const exampleTriggerCustom = new azure.logicapps.TriggerCustom("exampleTriggerCustom", {
        logicAppId: exampleWorkflow.id,
        body: `{
      "recurrence": {
        "frequency": "Day",
        "interval": 1
      },
      "type": "Recurrence"
    }
    `,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_workflow = azure.logicapps.Workflow("exampleWorkflow",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    example_trigger_custom = azure.logicapps.TriggerCustom("exampleTriggerCustom",
        logic_app_id=example_workflow.id,
        body="""{
      "recurrence": {
        "frequency": "Day",
        "interval": 1
      },
      "type": "Recurrence"
    }
    """)
    

    Example coming soon!

    Create TriggerCustom Resource

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

    Constructor syntax

    new TriggerCustom(name: string, args: TriggerCustomArgs, opts?: CustomResourceOptions);
    @overload
    def TriggerCustom(resource_name: str,
                      args: TriggerCustomArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def TriggerCustom(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      body: Optional[str] = None,
                      logic_app_id: Optional[str] = None,
                      name: Optional[str] = None)
    func NewTriggerCustom(ctx *Context, name string, args TriggerCustomArgs, opts ...ResourceOption) (*TriggerCustom, error)
    public TriggerCustom(string name, TriggerCustomArgs args, CustomResourceOptions? opts = null)
    public TriggerCustom(String name, TriggerCustomArgs args)
    public TriggerCustom(String name, TriggerCustomArgs args, CustomResourceOptions options)
    
    type: azure:logicapps:TriggerCustom
    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 TriggerCustomArgs
    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 TriggerCustomArgs
    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 TriggerCustomArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TriggerCustomArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TriggerCustomArgs
    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 triggerCustomResource = new Azure.LogicApps.TriggerCustom("triggerCustomResource", new()
    {
        Body = "string",
        LogicAppId = "string",
        Name = "string",
    });
    
    example, err := logicapps.NewTriggerCustom(ctx, "triggerCustomResource", &logicapps.TriggerCustomArgs{
    	Body:       pulumi.String("string"),
    	LogicAppId: pulumi.String("string"),
    	Name:       pulumi.String("string"),
    })
    
    var triggerCustomResource = new TriggerCustom("triggerCustomResource", TriggerCustomArgs.builder()
        .body("string")
        .logicAppId("string")
        .name("string")
        .build());
    
    trigger_custom_resource = azure.logicapps.TriggerCustom("triggerCustomResource",
        body="string",
        logic_app_id="string",
        name="string")
    
    const triggerCustomResource = new azure.logicapps.TriggerCustom("triggerCustomResource", {
        body: "string",
        logicAppId: "string",
        name: "string",
    });
    
    type: azure:logicapps:TriggerCustom
    properties:
        body: string
        logicAppId: string
        name: string
    

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

    Body string
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    LogicAppId string
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    Body string
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    LogicAppId string
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body String
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logicAppId String
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name String
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body string
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logicAppId string
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name string
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body str
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logic_app_id str
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name str
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body String
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logicAppId String
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name String
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.

    Outputs

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

    Get an existing TriggerCustom 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?: TriggerCustomState, opts?: CustomResourceOptions): TriggerCustom
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            body: Optional[str] = None,
            logic_app_id: Optional[str] = None,
            name: Optional[str] = None) -> TriggerCustom
    func GetTriggerCustom(ctx *Context, name string, id IDInput, state *TriggerCustomState, opts ...ResourceOption) (*TriggerCustom, error)
    public static TriggerCustom Get(string name, Input<string> id, TriggerCustomState? state, CustomResourceOptions? opts = null)
    public static TriggerCustom get(String name, Output<String> id, TriggerCustomState state, CustomResourceOptions options)
    resources:  _:    type: azure:logicapps:TriggerCustom    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.
    The following state arguments are supported:
    Body string
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    LogicAppId string
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    Body string
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    LogicAppId string
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body String
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logicAppId String
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name String
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body string
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logicAppId string
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name string
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body str
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logic_app_id str
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name str
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.
    body String
    Specifies the JSON Blob defining the Body of this Custom Trigger.
    logicAppId String
    Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
    name String
    Specifies the name of the HTTP Trigger to be created within the Logic App Workflow. Changing this forces a new resource to be created.

    Import

    Logic App Custom Triggers can be imported using the resource id, e.g.

     $ pulumi import azure:logicapps/triggerCustom:TriggerCustom custom1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Logic/workflows/workflow1/triggers/custom1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.