Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add SLASH_23 support #3327

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-beta/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