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 23, 2020
1 parent ca950db commit e24ee64
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 e24ee64

Please sign in to comment.