Skip to content

Commit

Permalink
Initial resources for temporary environment 01
Browse files Browse the repository at this point in the history
  • Loading branch information
rfk-nc committed Jan 23, 2025
1 parent 795fe11 commit 411073a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infrastructure/modules/storage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ resource "azurerm_storage_container" "container" {
-------------------------------------------------------------------------------------------------- */

module "private_endpoint_blob_storage" {
count = var.private_endpoint_properties != null && var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
count = var.private_endpoint_properties != null ? 1 : 0

source = "../private-endpoint"

Expand All @@ -53,7 +53,7 @@ module "private_endpoint_blob_storage" {
}

module "private_endpoint_queue_storage" {
count = var.private_endpoint_properties.private_endpoint_enabled ? 1 : 0
count = var.private_endpoint_properties != null ? 1 : 0

source = "../private-endpoint"

Expand Down

0 comments on commit 411073a

Please sign in to comment.