Skip to content

Commit 424ac07

Browse files
Allow multiple SSL Certificates on SSL Proxy LBs (#4499) (#2964)
* mark field as updatable Co-authored-by: upodroid <[email protected]> * remove ssl proxy limit Co-authored-by: upodroid <[email protected]> Signed-off-by: Modular Magician <[email protected]> Co-authored-by: upodroid <[email protected]>
1 parent 2059390 commit 424ac07

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.changelog/4499.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
compute: removed max items limit from `google_compute_target_ssl_proxy`. The API currently allows upto 15 Certificates.
3+
```

google-beta/resource_compute_target_ssl_proxy.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,8 @@ character, which cannot be a dash.`,
6565
Type: schema.TypeList,
6666
Required: true,
6767
Description: `A list of SslCertificate resources that are used to authenticate
68-
connections between users and the load balancer. Currently, exactly
69-
one SSL certificate must be specified.`,
70-
MaxItems: 1,
68+
connections between users and the load balancer. At least one
69+
SSL certificate must be specified.`,
7170
Elem: &schema.Schema{
7271
Type: schema.TypeString,
7372
DiffSuppressFunc: compareSelfLinkOrResourceName,

website/docs/r/compute_target_ssl_proxy.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ The following arguments are supported:
9494
* `ssl_certificates` -
9595
(Required)
9696
A list of SslCertificate resources that are used to authenticate
97-
connections between users and the load balancer. Currently, exactly
98-
one SSL certificate must be specified.
97+
connections between users and the load balancer. At least one
98+
SSL certificate must be specified.
9999

100100

101101
- - -

0 commit comments

Comments
 (0)