terraform-azurerm-vnet icon indicating copy to clipboard operation
terraform-azurerm-vnet copied to clipboard

create_network_watcher value is ignored, always creates network watcher

Open ssdowd opened this issue 2 years ago • 0 comments

Setting create_network_watcher to false results in a network watcher being created. It needs to have a type of bool, or the ternary test needs to be:

   count    = var.create_network_watcher ? 1 : 0

ssdowd avatar Jan 11 '23 21:01 ssdowd