Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tencentcloud/resource_tc_kubernetes_node_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ resource "tencentcloud_kubernetes_node_pool" "mynodepool" {
instance_type = var.default_instance_type
system_disk_type = "CLOUD_PREMIUM"
system_disk_size = "50"
security_group_ids = ["sg-24vswocp"]
orderly_security_group_ids = ["sg-24vswocp"]

data_disk {
disk_type = "CLOUD_PREMIUM"
Expand Down Expand Up @@ -117,7 +117,7 @@ resource "tencentcloud_kubernetes_node_pool" "mynodepool" {
instance_type = var.default_instance_type
system_disk_type = "CLOUD_PREMIUM"
system_disk_size = "50"
security_group_ids = ["sg-24vswocp"]
orderly_security_group_ids = ["sg-24vswocp", "sg-3qntci2v", "sg-7y1t2wax"]
instance_charge_type = "SPOTPAID"
spot_instance_type = "one-time"
spot_max_price = "1000"
Expand Down
2 changes: 1 addition & 1 deletion tencentcloud/resource_tc_tdmq_rocketmq_vip_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func resourceTencentCloudTdmqRocketmqVipInstance() *schema.Resource {
"spec": {
Required: true,
Type: schema.TypeString,
Description: "Instance specification:Basic type, rocket-vip-basic-1Standard type, rocket-vip-basic-2Advanced Type I, rocket-vip-basic-3Advanced Type II, rocket-vip-basic-4.",
Description: "Instance specification: Basic type: `rocket-vip-basic-1`, Standard type: `rocket-vip-basic-2`, Advanced Type I: `rocket-vip-basic-3`, Advanced Type II: `rocket-vip-basic-4`.",
},
"node_count": {
Required: true,
Expand Down
2 changes: 1 addition & 1 deletion tencentcloud/resource_tc_vpc_flow_log.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func resourceTencentCloudVpcFlowLog() *schema.Resource {
"cloud_log_id": {
Optional: true,
Type: schema.TypeString,
Description: "Specify flow log storage id.",
Description: "Specify flow log storage id, just set cls topic id.",
},
"storage_type": {
Optional: true,
Expand Down
22 changes: 11 additions & 11 deletions website/docs/r/kubernetes_node_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ resource "tencentcloud_kubernetes_node_pool" "mynodepool" {
multi_zone_subnet_policy = "EQUALITY"

auto_scaling_config {
instance_type = var.default_instance_type
system_disk_type = "CLOUD_PREMIUM"
system_disk_size = "50"
security_group_ids = ["sg-24vswocp"]
instance_type = var.default_instance_type
system_disk_type = "CLOUD_PREMIUM"
system_disk_size = "50"
orderly_security_group_ids = ["sg-24vswocp"]

data_disk {
disk_type = "CLOUD_PREMIUM"
Expand Down Expand Up @@ -124,13 +124,13 @@ resource "tencentcloud_kubernetes_node_pool" "mynodepool" {
multi_zone_subnet_policy = "EQUALITY"

auto_scaling_config {
instance_type = var.default_instance_type
system_disk_type = "CLOUD_PREMIUM"
system_disk_size = "50"
security_group_ids = ["sg-24vswocp"]
instance_charge_type = "SPOTPAID"
spot_instance_type = "one-time"
spot_max_price = "1000"
instance_type = var.default_instance_type
system_disk_type = "CLOUD_PREMIUM"
system_disk_size = "50"
orderly_security_group_ids = ["sg-24vswocp", "sg-3qntci2v", "sg-7y1t2wax"]
instance_charge_type = "SPOTPAID"
spot_instance_type = "one-time"
spot_max_price = "1000"

data_disk {
disk_type = "CLOUD_PREMIUM"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/tdmq_rocketmq_vip_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The following arguments are supported:

* `name` - (Required, String) Instance name.
* `node_count` - (Required, Int) Number of nodes, minimum 2, maximum 20.
* `spec` - (Required, String) Instance specification:Basic type, rocket-vip-basic-1Standard type, rocket-vip-basic-2Advanced Type I, rocket-vip-basic-3Advanced Type II, rocket-vip-basic-4.
* `spec` - (Required, String) Instance specification: Basic type: `rocket-vip-basic-1`, Standard type: `rocket-vip-basic-2`, Advanced Type I: `rocket-vip-basic-3`, Advanced Type II: `rocket-vip-basic-4`.
* `storage_size` - (Required, Int) Single node storage space, in GB, minimum 200GB.
* `time_span` - (Required, Int) Purchase period, in months.
* `vpc_info` - (Required, List) VPC information.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/vpc_flow_log.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The following arguments are supported:
* `resource_id` - (Required, String) Specify resource unique Id of `resource_type` configured.
* `resource_type` - (Required, String) Specify resource type. NOTE: Only support `NETWORKINTERFACE` for now. Values: `VPC`, `SUBNET`, `NETWORKINTERFACE`, `CCN`, `NAT`, `DCG`.
* `traffic_type` - (Required, String) Specify log traffic type, values: `ACCEPT`, `REJECT`, `ALL`.
* `cloud_log_id` - (Optional, String) Specify flow log storage id.
* `cloud_log_id` - (Optional, String) Specify flow log storage id, just set cls topic id.
* `cloud_log_region` - (Optional, String) Specify flow log storage region, default using current.
* `flow_log_description` - (Optional, String) Specify flow Log description.
* `flow_log_storage` - (Optional, List) Specify consumer detail, required while `storage_type` is `ckafka`.
Expand Down