Skip to content

Commit

Permalink
cloud app armor: Maximum number of src_ip_ranges is 10 (#3516) (#2076)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed May 15, 2020
1 parent 55a8235 commit dde1a7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/3516.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
google_compute_security_policy: raise limit on number of srcIpRange values to supported 10
```
2 changes: 1 addition & 1 deletion google-beta/resource_compute_security_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func resourceComputeSecurityPolicy() *schema.Resource {
Type: schema.TypeSet,
Required: true,
MinItems: 1,
MaxItems: 5,
MaxItems: 10,
Elem: &schema.Schema{Type: schema.TypeString},
},
},
Expand Down

0 comments on commit dde1a7f

Please sign in to comment.