Skip to content

Data Source: azurermLogicAppStandard

Use this data source to access information about an existing Logic App Standard instance.

Example Usage

import * as cdktf from "cdktf";
/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as azurerm from "./.gen/providers/azurerm";
/*The following providers are missing schema information and might need manual adjustments to synthesize correctly: azurerm.
For a more precise conversion please use the --provider flag in convert.*/
const dataAzurermLogicAppStandardExample =
  new azurerm.dataAzurermLogicAppStandard.DataAzurermLogicAppStandard(
    this,
    "example",
    {
      name: "logicappstd",
      resource_group_name: "example-rg",
    }
  );
new cdktf.TerraformOutput(this, "id", {
  value: dataAzurermLogicAppStandardExample.id,
});

Arguments Reference

The following arguments are supported:

  • name - The name of this Logic App.

  • resourceGroupName - The name of the Resource Group where the Logic App exists.

Attributes Reference

The following attributes are exported:

  • id - The Logic App Standard ID.

  • location - The Azure location where the Logic App Standard exists.

  • identity - An identity block as defined below.


The identity block exports the following:

  • type - The Type of Managed Identity assigned to this Logic App Workflow.

  • tenantId - The Tenant ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.

  • principalId - The Principal ID for the Service Principal associated with the Managed Service Identity of this Logic App Workflow.

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • read - (Defaults to 5 minutes) Used when retrieving the Logic App Workflow.