From 323c968736ad3680d271c56ccf7d63ef34293837 Mon Sep 17 00:00:00 2001 From: Ajayi Dipo Date: Tue, 19 Nov 2024 09:22:59 +0100 Subject: [PATCH] Remove remaining platform_features_enabled vars (#9) --- registry.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry.tf b/registry.tf index 414807a..914ba50 100644 --- a/registry.tf +++ b/registry.tf @@ -1,5 +1,5 @@ resource "azurerm_container_registry" "truefoundry_container_registry" { - count = var.platform_feature_enabled ? var.feature_container_registry_enabled ? 1 : 0 : 0 + count = var.feature_container_registry_enabled ? 1 : 0 name = local.container_registry_name resource_group_name = var.resource_group_name location = var.location