Skip to content

Commit f32f4da

Browse files
author
gailwang
committed
fix version issue
1 parent db420ff commit f32f4da

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.22.1 (Unreleased)
1+
## 1.23.0 (Unreleased)
22

33
FEATURES:
44

@@ -21,9 +21,6 @@ FEATURES:
2121
* **New Data Source**: `tencentcloud_cfs_access_rules`
2222
* **New Data Source**: `tencentcloud_scf_functions`
2323
* **New Data Source**: `tencentcloud_scf_namespaces`
24-
* **New Data Source**: `tencentcloud_vpn_gateways`
25-
* **New Data Source**: `tencentcloud_customer_gateways`
26-
* **New Data Source**: `tencentcloud_vpn_connections`
2724
* **New Data Source**: `tencentcloud_scf_logs`
2825
* **New Resource**: `tencentcloud_cfs_file_system`
2926
* **New Resource**: `tencentcloud_cfs_access_group`

tencentcloud/provider.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ VPC Resources
218218
tencentcloud_route_table_entry
219219
tencentcloud_dnat
220220
tencentcloud_nat_gateway
221+
222+
VPN Resources
221223
tencentcloud_vpn_customer_gateway
222224
tencentcloud_vpn_gateway
223225
tencentcloud_vpn_connection

tencentcloud/resource_tc_vpn_gateway.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ func resourceTencentCloudVpnGateway() *schema.Resource {
6464
"bandwidth": {
6565
Type: schema.TypeInt,
6666
Optional: true,
67+
Default: 5,
6768
ValidateFunc: validateAllowedIntValue([]int{5, 10, 20, 50, 100}),
6869
Description: "The maximum public network output bandwidth of VPN gateway (unit: Mbps), the available values include: 5,10,20,50,100. Default is 5.",
6970
},

website/docs/d/vpn_gateways.html.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ In addition to all arguments above, the following attributes are exported:
5454
* `public_ip_address` - Public ip of the VPN gateway.
5555
* `restrict_state` - Restrict state of VPN gateway, valid values are `PRETECIVELY_ISOLATED`, `NORMAL`.
5656
* `state` - State of the VPN gateway, valid values are `PENDING`, `DELETING`, `AVAILABLE`.
57+
* `tags` - A list of tags used to associate different resources.
5758
* `type` - Type of gateway instance, valid values are `IPSEC`, `SSL`.
5859
* `vpc_id` - ID of the VPC.
60+
* `zone` - Zone of the VPN gateway.
5961

6062

website/tencentcloud.erb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,13 @@
627627
<li<%= sidebar_current("docs-tencentcloud-resource-nat_gateway") %>>
628628
<a href="/docs/providers/tencentcloud/r/nat_gateway.html">tencentcloud_nat_gateway</a>
629629
</li>
630+
</ul>
631+
</li>
632+
633+
<li<%= sidebar_current("docs-tencentcloud-resource-vpn") %>>
634+
<a href="#">VPN Resources</a>
635+
<ul class="nav">
636+
630637
<li<%= sidebar_current("docs-tencentcloud-resource-vpn_customer_gateway") %>>
631638
<a href="/docs/providers/tencentcloud/r/vpn_customer_gateway.html">tencentcloud_vpn_customer_gateway</a>
632639
</li>

0 commit comments

Comments
 (0)