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: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,20 @@
1
1
## 1.53.5 (Unreleased)
2
+
3
+
ENHANCEMENTS:
4
+
5
+
* Resource `tencentcloud_clb_instance` add `internet_charge_type`, `internet_bandwidth_max_out` to support internet traffic setting with OPEN CLB instance.
6
+
* Resource `tencentcloud_clb_rule` add `http2_switch` to support HTTP2 protocol setting.
7
+
* Resource `tencentcloud_kubernetes_cluster` add `lan_ip` to show node LAN IP.
8
+
* Resource `tencentcloud_kubernetes_scale_worker` add `lan_ip` to show node LAN IP.
9
+
* Resource `tencentcloud_kubernetes_cluster_attachment` add `state` to show node state.
10
+
* Resource `tencentcloud_clb_rule` support certificate modifying.
11
+
* Data Source `tencentcloud_clb_instances` add `internet_charge_type`, `internet_bandwidth_max_out`.
12
+
* Data Source `tencentcloud_clb_rules` add `http2_switch`.
13
+
14
+
BUG FIXES:
15
+
16
+
* Resource: `tencentcloud_clb_attachment` fix bug that attach more than 20 targets will failed.
Description: "The available tags within this CLB.",
136
136
},
137
+
"address_ip_version": {
138
+
Type: schema.TypeString,
139
+
Computed: true,
140
+
Description: "IP version, only applicable to open CLB. Valid values are `IPV4`, `IPV6` and `IPv6FullChain`.",
141
+
},
142
+
"vip_isp": {
143
+
Type: schema.TypeString,
144
+
Computed: true,
145
+
Description: "Network operator, only applicable to open CLB. Valid values are `CMCC`(China Mobile), `CTCC`(Telecom), `CUCC`(China Unicom) and `BGP`. If this ISP is specified, network billing method can only use the bandwidth package billing (BANDWIDTH_PACKAGE).",
146
+
},
147
+
"internet_charge_type": {
148
+
Type: schema.TypeString,
149
+
Computed: true,
150
+
Description: "Internet charge type, only applicable to open CLB. Valid values are `TRAFFIC_POSTPAID_BY_HOUR`, `BANDWIDTH_POSTPAID_BY_HOUR` and `BANDWIDTH_PACKAGE`.",
151
+
},
152
+
"internet_bandwidth_max_out": {
153
+
Type: schema.TypeInt,
154
+
Computed: true,
155
+
Description: "Max bandwidth out, only applicable to open CLB. Valid value ranges is [1, 2048]. Unit is MB.",
156
+
},
137
157
},
138
158
},
139
159
},
@@ -181,20 +201,26 @@ func dataSourceTencentCloudClbInstancesRead(d *schema.ResourceData, meta interfa
Description: "Scheduling method of the CLB listener, and available values include 'WRR', 'IP_HASH' and 'LEAST_CONN'. The default is 'WRR'. NOTES: TCP/UDP/TCP_SSL listener allows direct configuration, HTTP/HTTPS listener needs to be configured in tencentcloud_clb_listener_rule.",
166
165
},
166
+
"http2_switch": {
167
+
Type: schema.TypeBool,
168
+
Computed: true,
169
+
Description: "Indicate to set HTTP2 protocol or not.",
170
+
},
167
171
},
168
172
},
169
173
},
@@ -228,11 +232,12 @@ func dataSourceTencentCloudClbListenerRulesRead(d *schema.ResourceData, meta int
0 commit comments