We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2ab84c commit fb40101Copy full SHA for fb40101
main.tf
@@ -28,7 +28,7 @@ resource "azurerm_storage_account" "storage_account" {
28
infrastructure_encryption_enabled = local.storage_account[each.key].infrastructure_encryption_enabled
29
30
dynamic "custom_domain" {
31
- for_each = local.storage_account[each.key].custom_domain.name == "" ? [1] : []
+ for_each = local.storage_account[each.key].custom_domain.name != "" ? [1] : []
32
content {
33
name = local.storage_account[each.key].custom_domain.name
34
use_subdomain = local.storage_account[each.key].custom_domain.use_subdomain
0 commit comments