We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3d043e8 + e83436c commit 61cdf47Copy full SHA for 61cdf47
main.tf
@@ -111,7 +111,7 @@ resource "azurerm_storage_account" "this" {
111
for_each = var.identity == null ? [] : [var.identity]
112
content {
113
type = identity.value.type
114
- identity_ids = toset(values(identity.value.identity_ids))
+ identity_ids = identity.value.identity_ids != null ? toset(values(identity.value.identity_ids)) : null
115
}
116
117
dynamic "immutability_policy" {
@@ -376,4 +376,4 @@ resource "azurerm_storage_management_policy" "this" {
376
update = timeouts.value.update
377
378
379
-}
+}
0 commit comments