Manages a Logic App Integration Account.
resource "azurerm_resource_group" "example" {
name = "example-resources"
location = "West Europe"
}
resource "azurerm_logic_app_integration_account" "example" {
name = "example-ia"
resource_group_name = azurerm_resource_group.example.name
location = azurerm_resource_group.example.location
sku_name = "Standard"
tags = {
foo = "bar"
}
}
The following arguments are supported:
name
- (Required) The name which should be used for this Logic App Integration Account. Changing this forces a new Logic App Integration Account to be created.
resource_group_name
- (Required) The name of the Resource Group where the Logic App Integration Account should exist. Changing this forces a new Logic App Integration Account to be created.
location
- (Required) The Azure Region where the Logic App Integration Account should exist. Changing this forces a new Logic App Integration Account to be created.
sku_name
- (Required) The SKU name of the Logic App Integration Account. Possible Values are Basic
, Free
and Standard
.
integration_service_environment_id
- (Optional) The resource ID of the Integration Service Environment. Changing this forces a new Logic App Integration Account to be created.
tags
- (Optional) A mapping of tags which should be assigned to the Logic App Integration Account.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The ID of the Logic App Integration Account.The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the Logic App Integration Account.read
- (Defaults to 5 minutes) Used when retrieving the Logic App Integration Account.update
- (Defaults to 30 minutes) Used when updating the Logic App Integration Account.delete
- (Defaults to 30 minutes) Used when deleting the Logic App Integration Account.Logic App Integration Accounts can be imported using the resource id
, e.g.
terraform import azurerm_logic_app_integration_account.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logic/integrationAccounts/account1