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 cf9b8b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .changelog/22284.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/networkfirewall: allow any character in networkfirewall/ip_sets as per the AWS apis docs
```
5 changes: 1 addition & 4 deletions internal/service/networkfirewall/rule_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,7 @@ func ResourceRuleGroup() *schema.Resource {
"definition": {
Type: schema.TypeSet,
Required: true,
Elem: &schema.Schema{
Type: schema.TypeString,
ValidateFunc: verify.ValidIPv4CIDRNetworkAddress,
},
Elem: &schema.Schema{Type: schema.TypeString},
},
},
},
Expand Down

0 comments on commit cf9b8b2

Please sign in to comment.