Skip to content

Commit a9d589d

Browse files
committed
fix: Managed Identity Limit Per Flow
1 parent 8e17258 commit a9d589d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ resource "azurerm_logic_app_workflow" "this" {
1515
tags = var.tags
1616
workflow_parameters = local.workflow_parameters
1717
identity {
18-
type = var.identity_ids == null ? "SystemAssigned" : "SystemAssigned, UserAssigned"
18+
type = var.identity_ids == null ? "SystemAssigned" : "UserAssigned"
1919
identity_ids = var.identity_ids
2020
}
2121
}

0 commit comments

Comments
 (0)