terraform-azurerm-vnet
terraform-azurerm-vnet copied to clipboard
create_network_watcher value is ignored, always creates network watcher
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