You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google-beta/resource_network_services_edge_cache_service.go
+36Lines changed: 36 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -742,6 +742,15 @@ The supported values are:
742
742
Optional: true,
743
743
Description: `A human-readable description of the resource.`,
744
744
},
745
+
"disable_http2": {
746
+
Type: schema.TypeBool,
747
+
Optional: true,
748
+
Description: `Disables HTTP/2.
749
+
750
+
HTTP/2 (h2) is enabled by default and recommended for performance. HTTP/2 improves connection re-use and reduces connection setup overhead by sending multiple streams over the same connection.
751
+
752
+
Some legacy HTTP clients may have issues with HTTP/2 connections due to broken HTTP/2 implementations. Setting this to true will prevent HTTP/2 from being advertised and negotiated.`,
753
+
},
745
754
"disable_quic": {
746
755
Type: schema.TypeBool,
747
756
Computed: true,
@@ -862,6 +871,12 @@ func resourceNetworkServicesEdgeCacheServiceCreate(d *schema.ResourceData, meta
@@ -777,6 +778,12 @@ The following arguments are supported:
777
778
(Optional)
778
779
HTTP/3 (IETF QUIC) and Google QUIC are enabled by default.
779
780
781
+
*`disable_http2` -
782
+
(Optional)
783
+
Disables HTTP/2.
784
+
HTTP/2 (h2) is enabled by default and recommended for performance. HTTP/2 improves connection re-use and reduces connection setup overhead by sending multiple streams over the same connection.
785
+
Some legacy HTTP clients may have issues with HTTP/2 connections due to broken HTTP/2 implementations. Setting this to true will prevent HTTP/2 from being advertised and negotiated.
786
+
780
787
*`require_tls` -
781
788
(Optional)
782
789
Require TLS (HTTPS) for all clients connecting to this service.
0 commit comments