Skip to content

Commit 526684f

Browse files
authored
fix(cfw): [128294343] tencentcloud_cfw_vpc_instance remove bandwidth 1024 limit (#3577)
* add * add
1 parent 97669a0 commit 526684f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.changelog/3577.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
resource/tencentcloud_cfw_vpc_instance: remove bandwidth 1024 limit
3+
```

tencentcloud/services/cfw/resource_tc_cfw_vpc_instance.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,9 @@ func ResourceTencentCloudCfwVpcInstance() *schema.Resource {
7070
Description: "Firewall Deployment Region.",
7171
},
7272
"width": {
73-
Type: schema.TypeInt,
74-
Required: true,
75-
ValidateFunc: tccommon.ValidateIntegerMin(1024),
76-
Description: "Bandwidth, unit: Mbps.",
73+
Type: schema.TypeInt,
74+
Required: true,
75+
Description: "Bandwidth, unit: Mbps.",
7776
},
7877
"cross_a_zone": {
7978
Type: schema.TypeInt,

0 commit comments

Comments
 (0)