Skip to content

Commit 3fca837

Browse files
authored
doc: update changelog (#814)
1 parent 2165417 commit 3fca837

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 1.60.26 (January 6, 2022)
2+
3+
COMMON:
4+
5+
* fix testcases
6+
7+
ENHANCEMENTS:
8+
9+
* resource `tencentcloud_vpc` support vpc assistant CIDR
10+
* resource `tencentcloud_eip` support create HighQualityEIP
11+
* resource `tencentcloud_instance` support charge type update
12+
13+
## 1.60.25 (December 27, 2021)
14+
15+
BUGFIXES:
16+
17+
* Resource `tencentcloud_instance` rollback instance_charge_type_prepaid_period
18+
19+
## 1.60.24 (December 27, 2021)
20+
21+
COMMON:
22+
23+
* add testcases basic required resource
24+
25+
BUGFIXES:
26+
27+
* fix service mongodb status query
28+
129
## 1.60.23 (December 24, 2021)
230

331
ENHANCEMENTS:

tencentcloud/resource_tc_instance.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ func resourceTencentCloudInstanceUpdate(d *schema.ResourceData, meta interface{}
969969

970970
if d.HasChange("instance_charge_type") {
971971
old, chargeType := d.GetChange("instance_charge_type")
972-
if old.(string) != CVM_CHARGE_TYPE_POSTPAID || chargeType.(string) != CVM_CHARGE_TYPE_PREPAID {
972+
if old.(string) != CVM_CHARGE_TYPE_POSTPAID || chargeType.(string) != CVM_CHARGE_TYPE_PREPAID {
973973
return fmt.Errorf("Only support change chargeType from POSTPAID_BY_HOUR to PREPAID.")
974974
}
975975
var (

0 commit comments

Comments
 (0)