Skip to content

Commit

Permalink
fix #22268: allow any character in networkfirewall/ip_sets as per the…
Browse files Browse the repository at this point in the history
… api docs
  • Loading branch information
lenios committed Dec 20, 2021
1 parent aafef00 commit 3d4f925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/service/networkfirewall/rule_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func ResourceRuleGroup() *schema.Resource {
Required: true,
Elem: &schema.Schema{
Type: schema.TypeString,
ValidateFunc: verify.ValidIPv4CIDRNetworkAddress,
ValidateFunc: validation.StringMatch(regexp.MustCompile(`^.*$`), ""),
},
},
},
Expand Down

0 comments on commit 3d4f925

Please sign in to comment.