Skip to content
This repository has been archived by the owner on Nov 27, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3 from aztfmod/Remove011Syntax
Browse files Browse the repository at this point in the history
Remove 0.11 interpolation only syntax
  • Loading branch information
LaurentLesle authored Nov 21, 2019
2 parents 538c536 + 9297161 commit 0d92169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "azurerm_storage_account" "log" {
}

resource "azurerm_eventhub_namespace" "log" {
count = "${var.enable_event_hub ? 1 : 0}"
count = var.enable_event_hub ? 1 : 0
name = local.name
location = var.location
resource_group_name = var.resource_group_name
Expand Down

0 comments on commit 0d92169

Please sign in to comment.