Skip to content

Commit

Permalink
bugfix: remove redundant data keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvalyaron committed Nov 19, 2024
1 parent b07871e commit 0106748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devops/terraform/locals.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
locals {
# The key store for encryption keys could either be external or created by terraform
key_store_id = var.enable_cmk_encryption ? (var.external_key_store_id != null ? var.external_key_store_id : data.azurerm_key_vault.encryption_kv[0].id) : null
key_store_id = var.enable_cmk_encryption ? (var.external_key_store_id != null ? var.external_key_store_id : azurerm_key_vault.encryption_kv[0].id) : null
}

0 comments on commit 0106748

Please sign in to comment.