Difference between revisions of "Azurerm bugs"

From UVOO Tech Wiki
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 21:39, 27 May 2022

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.