Azure Logic App Integration Account

This page shows how to write Terraform and Azure Resource Manager for Logic App Integration Account and write them securely.

azurerm_logic_app_integration_account (Terraform)

The Integration Account in Logic App can be configured in Terraform with the resource name azurerm_logic_app_integration_account. The following sections describe 3 examples of how to use the resource and its parameters.

Example Usage from GitHub

module.tf#L11
resource "azurerm_logic_app_integration_account" "ia" {
  name                = var.name
  resource_group_name = var.resource_group_name
  location            = var.location
  sku_name            = var.sku_name
  tags                = merge(var.tags, var.base_tags)
module.tf#L11
resource "azurerm_logic_app_integration_account" "ia" {
  name                = var.name
  resource_group_name = var.resource_group_name
  location            = var.location
  sku_name            = var.sku_name
  tags                = merge(var.tags, var.base_tags)
module.tf#L12
resource "azurerm_logic_app_integration_account" "ia" {
  name                = azurecaf_name.ia.result
  resource_group_name = var.resource_group_name
  location            = var.location
  sku_name            = var.settings.sku_name
  tags                = merge(local.tags, lookup(var.settings, "tags", {}))

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages a Logic App Integration Account.

Microsoft.Logic/integrationAccounts (Azure Resource Manager)

The integrationAccounts in Microsoft.Logic can be configured in Azure Resource Manager with the resource name Microsoft.Logic/integrationAccounts. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

azuredeploy.json#L94
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('location')]",
      "apiVersion": "2019-05-01"
    },
    {
      "properties": {},
azuredeploy.json#L110
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('logicAppLocation')]",
      "apiVersion": "2016-06-01"
    },
    {
      "properties": { },
IntegrationAccountsCreateOrUpdate.json#L26
            "type":"Microsoft.Logic/integrationAccounts",
            "location":"westus"
         }
      },
      "201":{
         "body":{
azuredeploy.json#L94
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('location')]",
      "apiVersion": "2019-05-01"
    },
    {
      "properties": {},
azuredeploy.json#L110
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('logicAppLocation')]",
      "apiVersion": "2016-06-01"
    },
    {
      "properties": { },
azuredeploy.json#L110
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('logicAppLocation')]",
      "apiVersion": "2016-06-01"
    },
    {
      "properties": { },
azuredeploy.json#L94
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('location')]",
      "apiVersion": "2019-05-01"
    },
    {
      "properties": {},
azuredeploy.json#L94
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('location')]",
      "apiVersion": "2019-05-01"
    },
    {
      "properties": {},
azuredeploy.json#L110
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('logicAppLocation')]",
      "apiVersion": "2016-06-01"
    },
    {
      "properties": { },
azuredeploy.json#L110
      "type": "Microsoft.Logic/integrationAccounts",
      "location": "[parameters('logicAppLocation')]",
      "apiVersion": "2016-06-01"
    },
    {
      "properties": { },

Frequently asked questions

What is Azure Logic App Integration Account?

Azure Logic App Integration Account is a resource for Logic App of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Logic App Integration Account?

For Terraform, the anmoltoppo/Terraform, pkhuntia/aztfmod and aztfmod/terraform-azurerm-caf source code examples are useful. See the Terraform Example section for further details.

For Azure Resource Manager, the kloudexpedition/azure-quickstart-templates, cjacoby85284/azure-quickstart-templates and rajithanitc/arm-resourcehealthswagger source code examples are useful. See the Azure Resource Manager Example section for further details.