Skip to content

Data Source: azurermLogicAppIntegrationAccount

Use this data source to access information about an existing Logic App Integration Account.

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 dataAzurermLogicAppIntegrationAccountExample =
  new azurerm.dataAzurermLogicAppIntegrationAccount.DataAzurermLogicAppIntegrationAccount(
    this,
    "example",
    {
      name: "example-account",
      resource_group_name: "example-resource-group",
    }
  );
new cdktf.TerraformOutput(this, "id", {
  value: dataAzurermLogicAppIntegrationAccountExample.id,
});

Arguments Reference

The following arguments are supported:

  • name - (Required) The name of this Logic App Integration Account.

  • resourceGroupName - (Required) The name of the Resource Group where the Logic App Integration Account exists.

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:

  • id - The ID of the Logic App Integration Account.

  • location - The Azure Region where the Logic App Integration Account exists.

  • skuName - The SKU name of the Logic App Integration Account.

  • tags - A mapping of tags assigned to the Logic App Integration Account.

Timeouts

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

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