Skip to content

Commit

Permalink
add SLASH_23 support (#4862) (#9343)
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 authored Jun 10, 2021
1 parent 73a5eb9 commit 566a874
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .changelog/4862.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
apigee: added SLASH_23 support for `peering_cidr_range` on `google_apigee_instance`
```
4 changes: 2 additions & 2 deletions google/resource_apigee_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ Use the following format: 'projects/([^/]+)/locations/([^/]+)/keyRings/([^/]+)/c
Type: schema.TypeString,
Optional: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{"SLASH_16", "SLASH_20", ""}, false),
Description: `The size of the CIDR block range that will be reserved by the instance. Possible values: ["SLASH_16", "SLASH_20"]`,
ValidateFunc: validation.StringInSlice([]string{"SLASH_16", "SLASH_20", "SLASH_23", ""}, false),
Description: `The size of the CIDR block range that will be reserved by the instance. Possible values: ["SLASH_16", "SLASH_20", "SLASH_23"]`,
},
"host": {
Type: schema.TypeString,
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/apigee_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ The following arguments are supported:
* `peering_cidr_range` -
(Optional)
The size of the CIDR block range that will be reserved by the instance.
Possible values are `SLASH_16` and `SLASH_20`.
Possible values are `SLASH_16`, `SLASH_20`, and `SLASH_23`.

* `description` -
(Optional)
Expand Down

0 comments on commit 566a874

Please sign in to comment.