Skip to content

azurermLogicAppIntegrationAccountAssembly

Manages a Logic App Integration Account Assembly.

Example Usage

/*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 azurermResourceGroupExample = new azurerm.resourceGroup.ResourceGroup(
  this,
  "example",
  {
    location: "West Europe",
    name: "example-resources",
  }
);
const azurermLogicAppIntegrationAccountExample =
  new azurerm.logicAppIntegrationAccount.LogicAppIntegrationAccount(
    this,
    "example_1",
    {
      location: azurermResourceGroupExample.location,
      name: "example-ia",
      resource_group_name: azurermResourceGroupExample.name,
      sku_name: "Basic",
    }
  );
/*This allows the Terraform resource name to match the original name. You can remove the call if you don't need them to match.*/
azurermLogicAppIntegrationAccountExample.overrideLogicalId("example");
const azurermLogicAppIntegrationAccountAssemblyExample =
  new azurerm.logicAppIntegrationAccountAssembly.LogicAppIntegrationAccountAssembly(
    this,
    "example_2",
    {
      assembly_name: "TestAssembly",
      content: '${filebase64("testdata/log4net.dll")}',
      integration_account_name: azurermLogicAppIntegrationAccountExample.name,
      name: "example-assembly",
      resource_group_name: azurermResourceGroupExample.name,
    }
  );
/*This allows the Terraform resource name to match the original name. You can remove the call if you don't need them to match.*/
azurermLogicAppIntegrationAccountAssemblyExample.overrideLogicalId("example");

Arguments Reference

The following arguments are supported:

  • name - (Required) The name which should be used for this Logic App Integration Account Assembly Artifact. Changing this forces a new resource to be created.

  • resourceGroupName - (Required) The name of the Resource Group where the Logic App Integration Account Assembly Artifact should exist. Changing this forces a new resource to be created.

  • integrationAccountName - (Required) The name of the Logic App Integration Account. Changing this forces a new resource to be created.

  • assemblyName - (Required) The name of the Logic App Integration Account Assembly.

  • assemblyVersion - (Optional) The version of the Logic App Integration Account Assembly. Defaults to 0000.

  • content - (Optional) The content of the Logic App Integration Account Assembly.

  • contentLinkUri - (Optional) The content link URI of the Logic App Integration Account Assembly.

  • metadata - (Optional) The metadata of the Logic App Integration Account Assembly.

Attributes Reference

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

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

Timeouts

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

  • create - (Defaults to 30 minutes) Used when creating the Logic App Integration Account Assembly.
  • read - (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account Assembly.
  • update - (Defaults to 30 minutes) Used when updating the Logic App Integration Account Assembly.
  • delete - (Defaults to 30 minutes) Used when deleting the Logic App Integration Account Assembly.

Import

Logic App Integration Account Assemblies can be imported using the resourceId, e.g.

terraform import azurerm_logic_app_integration_account_assembly.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logic/integrationAccounts/account1/assemblies/assembly1