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

Allow multiple SSL Certificates on SSL Proxy LBs #2964

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/4499.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
compute: removed max items limit from `google_compute_target_ssl_proxy`. The API currently allows upto 15 Certificates.
```
5 changes: 2 additions & 3 deletions google-beta/resource_compute_target_ssl_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,8 @@ character, which cannot be a dash.`,
Type: schema.TypeList,
Required: true,
Description: `A list of SslCertificate resources that are used to authenticate
connections between users and the load balancer. Currently, exactly
one SSL certificate must be specified.`,
MaxItems: 1,
connections between users and the load balancer. At least one
SSL certificate must be specified.`,
Elem: &schema.Schema{
Type: schema.TypeString,
DiffSuppressFunc: compareSelfLinkOrResourceName,
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/compute_target_ssl_proxy.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ The following arguments are supported:
* `ssl_certificates` -
(Required)
A list of SslCertificate resources that are used to authenticate
connections between users and the load balancer. Currently, exactly
one SSL certificate must be specified.
connections between users and the load balancer. At least one
SSL certificate must be specified.


- - -
Expand Down