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
2 changes: 1 addition & 1 deletion tencentcloud/resource_tc_kubernetes_cluster_attachment.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func TkeInstanceAdvancedSetting() map[string]*schema.Schema {
Type: schema.TypeString,
ForceNew: true,
Optional: true,
Description: "The name of the device or partition to mount.",
Description: "The name of the device or partition to mount. NOTE: this argument doesn't support setting in node pool, or will leads to mount error.",
},
},
},
Expand Down
6 changes: 3 additions & 3 deletions tencentcloud/resource_tc_sqlserver_readonly_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Provides a SQL Server instance resource to create read-only database instances.
Example Usage

```hcl
resource "tencentcloud_mysql_readonly_instance" "foo" {
resource "tencentcloud_sqlserver_readonly_instance" "foo" {
name = "tf_sqlserver_instance_ro"
availability_zone = "ap-guangzhou-4"
charge_type = "POSTPAID_BY_HOUR"
vpc_id = "` + defaultVpcId + `"
subnet_id = "` + defaultSubnetId + `"
vpc_id = "vpc-xxxxxxxx"
subnet_id = "subnet-xxxxxxxx"
memory = 2
storage = 10
master_instance_id = tencentcloud_sqlserver_instance.test.id
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/kubernetes_cluster_attachment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ The following arguments are supported:
The `data_disk` object supports the following:

* `auto_format_and_mount` - (Optional, ForceNew) Indicate whether to auto format and mount or not. Default is `false`.
* `disk_partition` - (Optional, ForceNew) The name of the device or partition to mount.
* `disk_partition` - (Optional, ForceNew) The name of the device or partition to mount. NOTE: this argument doesn't support setting in node pool, or will leads to mount error.
* `disk_size` - (Optional, ForceNew) Volume of disk in GB. Default is `0`.
* `disk_type` - (Optional, ForceNew) Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD`.
* `file_system` - (Optional, ForceNew) File system, e.g. `ext3/ext4/xfs`.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/kubernetes_node_pool.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ The `auto_scaling_config` object supports the following:
The `data_disk` object supports the following:

* `auto_format_and_mount` - (Optional, ForceNew) Indicate whether to auto format and mount or not. Default is `false`.
* `disk_partition` - (Optional, ForceNew) The name of the device or partition to mount.
* `disk_partition` - (Optional, ForceNew) The name of the device or partition to mount. NOTE: this argument doesn't support setting in node pool, or will leads to mount error.
* `disk_size` - (Optional, ForceNew) Volume of disk in GB. Default is `0`.
* `disk_type` - (Optional, ForceNew) Types of disk, available values: `CLOUD_PREMIUM` and `CLOUD_SSD`.
* `file_system` - (Optional, ForceNew) File system, e.g. `ext3/ext4/xfs`.
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/sqlserver_readonly_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ Provides a SQL Server instance resource to create read-only database instances.
## Example Usage

```hcl
resource "tencentcloud_mysql_readonly_instance" "foo" {
resource "tencentcloud_sqlserver_readonly_instance" "foo" {
name = "tf_sqlserver_instance_ro"
availability_zone = "ap-guangzhou-4"
charge_type = "POSTPAID_BY_HOUR"
vpc_id = "` + defaultVpcId + `"
subnet_id = "` + defaultSubnetId + `"
vpc_id = "vpc-xxxxxxxx"
subnet_id = "subnet-xxxxxxxx"
memory = 2
storage = 10
master_instance_id = tencentcloud_sqlserver_instance.test.id
Expand Down