Azurerm bugs

From UVOO Tech Wiki
Jump to navigation Jump to search

terraform azurerm firewall overwrites rule if not a unique collection

foo2 overwrites foo 1 rule

  1. foo1 rule collection
   "Foo" = {
     priority = 100
     action   = "Allow"
     rules = [
  1. foo2 rule collection
   "Foo" = {
     priority = 110
     action   = "Allow"
     rules = [

It should not allow duplicate named rules or merge rules by order or at least very least warn you that there are collection rules with the same name.