Skip to content

Commit

Permalink
Fix reading "rule_group_override" property
Browse files Browse the repository at this point in the history
Signed-off-by: Sune Keller <absukl@almbrand.dk>
  • Loading branch information
sirlatrom committed Mar 26, 2020
1 parent 15cafd6 commit bc9bcf3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -461,7 +461,7 @@ func expandArmWebApplicationFirewallPolicyManagedRuleSet(input []interface{}) *[
ruleSetType := v["type"].(string)
ruleSetVersion := v["version"].(string)
ruleGroupOverrides := []interface{}{}
if value, exists := v["rule_group_overrides"]; exists {
if value, exists := v["rule_group_override"]; exists {
ruleGroupOverrides = value.([]interface{})
}
result := network.ManagedRuleSet{
Expand Down

0 comments on commit bc9bcf3

Please sign in to comment.