Skip to content

Commit d94efc0

Browse files
author
rostachen
committed
fix:TkeCvmCreateInfo.data_disk.disk_type support CLOUD_HSSD
1 parent 3428503 commit d94efc0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tencentcloud/resource_tc_kubernetes_cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ func TkeCvmCreateInfo() map[string]*schema.Schema {
445445
Optional: true,
446446
Default: SYSTEM_DISK_TYPE_CLOUD_PREMIUM,
447447
//ValidateFunc: validateAllowedStringValue(SYSTEM_DISK_ALLOW_TYPE),
448-
Description: "Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD`.",
448+
Description: "Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD` and `CLOUD_HSSD`.",
449449
},
450450
"disk_size": {
451451
Type: schema.TypeInt,

website/docs/r/kubernetes_cluster.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ The following arguments are supported:
299299
* `container_runtime` - (Optional, ForceNew) Runtime type of the cluster, the available values include: 'docker' and 'containerd'. Default is 'docker'.
300300
* `deletion_protection` - (Optional) Indicates whether cluster deletion protection is enabled. Default is false.
301301
* `docker_graph_path` - (Optional, ForceNew) Docker graph path. Default is `/var/lib/docker`.
302-
* `enable_customized_pod_cidr` - (Optional, ForceNew) Whether to enable the custom mode of node podCIDR size. Default is false.
302+
* `enable_customized_pod_cidr` - (Optional) Whether to enable the custom mode of node podCIDR size. Default is false.
303303
* `eni_subnet_ids` - (Optional) Subnet Ids for cluster with VPC-CNI network mode. This field can only set when field `network_type` is 'VPC-CNI'. `eni_subnet_ids` can not empty once be set.
304304
* `exist_instance` - (Optional, ForceNew) create tke cluster by existed instances.
305305
* `extra_args` - (Optional, ForceNew) Custom parameter information related to the node.
@@ -330,7 +330,7 @@ The `cluster_extra_args` object supports the following:
330330
The `data_disk` object supports the following:
331331

332332
* `disk_size` - (Optional, ForceNew) Volume of disk in GB. Default is `0`.
333-
* `disk_type` - (Optional, ForceNew) Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD`.
333+
* `disk_type` - (Optional, ForceNew) Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD` and `CLOUD_HSSD`.
334334
* `snapshot_id` - (Optional, ForceNew) Data disk snapshot ID.
335335

336336
The `exist_instance` object supports the following:

website/docs/r/kubernetes_scale_worker.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ The `data_disk` object supports the following:
135135
The `data_disk` object supports the following:
136136

137137
* `disk_size` - (Optional, ForceNew) Volume of disk in GB. Default is `0`.
138-
* `disk_type` - (Optional, ForceNew) Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD`.
138+
* `disk_type` - (Optional, ForceNew) Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD` and `CLOUD_HSSD`.
139139
* `snapshot_id` - (Optional, ForceNew) Data disk snapshot ID.
140140

141141
The `worker_config` object supports the following:

website/docs/r/vpn_connection.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ The following arguments are supported:
5959
* `ike_local_address` - (Optional) Local address of IKE operation specification, valid when ike_local_identity is `ADDRESS`, generally the value is `public_ip_address` of the related VPN gateway.
6060
* `ike_local_fqdn_name` - (Optional) Local FQDN name of the IKE operation specification.
6161
* `ike_local_identity` - (Optional) Local identity way of IKE operation specification. Valid values: `ADDRESS`, `FQDN`. Default value is `ADDRESS`.
62-
* `ike_proto_authen_algorithm` - (Optional) Proto authenticate algorithm of the IKE operation specification. Valid values: `MD5`, `SHA`. Default Value is `MD5`.
62+
* `ike_proto_authen_algorithm` - (Optional) Proto authenticate algorithm of the IKE operation specification. Valid values: `MD5`, `SHA`, `SHA-256`. Default Value is `MD5`.
6363
* `ike_proto_encry_algorithm` - (Optional) Proto encrypt algorithm of the IKE operation specification. Valid values: `3DES-CBC`, `AES-CBC-128`, `AES-CBC-128`, `AES-CBC-256`, `DES-CBC`. Default value is `3DES-CBC`.
6464
* `ike_remote_address` - (Optional) Remote address of IKE operation specification, valid when ike_remote_identity is `ADDRESS`, generally the value is `public_ip_address` of the related customer gateway.
6565
* `ike_remote_fqdn_name` - (Optional) Remote FQDN name of the IKE operation specification.
6666
* `ike_remote_identity` - (Optional) Remote identity way of IKE operation specification. Valid values: `ADDRESS`, `FQDN`. Default value is `ADDRESS`.
6767
* `ike_sa_lifetime_seconds` - (Optional) SA lifetime of the IKE operation specification, unit is `second`. The value ranges from 60 to 604800. Default value is 86400 seconds.
6868
* `ike_version` - (Optional) Version of the IKE operation specification. Default value is `IKEV1`.
6969
* `ipsec_encrypt_algorithm` - (Optional) Encrypt algorithm of the IPSEC operation specification. Valid values: `3DES-CBC`, `AES-CBC-128`, `AES-CBC-128`, `AES-CBC-256`, `DES-CBC`. Default value is `3DES-CBC`.
70-
* `ipsec_integrity_algorithm` - (Optional) Integrity algorithm of the IPSEC operation specification. Valid values: `SHA1`, `MD5`. Default value is `MD5`.
70+
* `ipsec_integrity_algorithm` - (Optional) Integrity algorithm of the IPSEC operation specification. Valid values: `SHA1`, `MD5`, `SHA-256`. Default value is `MD5`.
7171
* `ipsec_pfs_dh_group` - (Optional) PFS DH group. Valid value: `GROUP1`, `GROUP2`, `GROUP5`, `GROUP14`, `GROUP24`, `NULL`. Default value is `NULL`.
7272
* `ipsec_sa_lifetime_seconds` - (Optional) SA lifetime of the IPSEC operation specification, unit is second. Valid value ranges: [180~604800]. Default value is 3600 seconds.
7373
* `ipsec_sa_lifetime_traffic` - (Optional) SA lifetime of the IPSEC operation specification, unit is KB. The value should not be less then 2560. Default value is 1843200.

0 commit comments

Comments
 (0)