Azurerm bugs

From UVOO Tech Wiki
Revision as of 21:39, 27 May 2022 by Busk (talk | contribs) (Created page with "terraform azurerm firewall overwrites rule if not a unique collection foo2 overwrites foo 1 rule # foo1 rule collection "Foo" = { priority = 100 action...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.