aztfm / terraform-azurerm-application-gateway-firewall-policy

Terraform module for Microsoft Azure to manage Application Gateway Firewall Policy resource.
https://registry.terraform.io/modules/aztfm/application-gateway-firewall-policy/azurerm/
Apache License 2.0
0 stars 0 forks source link

Support for for `Microsoft_BotManagerRuleSet` in `managed_rule_exclusions.rule_set.type` #9

Open gareda opened 3 months ago

gareda commented 3 months ago

Description

Add support for Microsoft_BotManagerRuleSet in managed_rule_exclusions.rule_set.type.

Potential Terraform Configuration

module "application_gateway_firewall_policy" {
  source              = "aztfm/application-gateway-firewall-policy/azurerm"
  version             = ">=2.0.0"
  ...
  managed_rule_exclusions = [{
    ...
    rule_set = {
      type = "Microsoft_BotManagerRuleSet"
      ...
  }]
}

References