Skip to content

Commit f35d001

Browse files
authored
Merge pull request #7 from data-platform-hq/fix-managed-identity
fix: managed identity limit per flow
2 parents 8e17258 + a9d589d commit f35d001

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)