Skip to content

Commit 163172b

Browse files
committed
optimize markdown [hcl]
1 parent 6c49bea commit 163172b

9 files changed

+13
-13
lines changed

website/docs/d/mysql_backup_list.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: |-
1111
Use this data source to query the list of backup databases.
1212

1313
## Example Usage
14-
```
14+
```hcl
1515
resource "tencentcloud_mysql_account" "default" {
1616
mysql_id = "my-test-database"
1717
name = "tf_account"

website/docs/d/mysql_instance.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Use this data source to get information about a MySQL instance
1212

1313
## Example Usage
1414

15-
```
15+
```hcl
1616
data "tencentcloud_mysql_instance" "database"{
1717
mysql_id = "my-test-database"
1818
}

website/docs/d/mysql_parameter_list.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Use this data source to get information about a parameter group of a database in
1212

1313
## Example Usage
1414

15-
```
15+
```hcl
1616
data "tencentcloud_mysql_parameter_list" "mysql" {
1717
mysql_id = "my-test-database "
1818
engine_version = "5.5"

website/docs/d/mysql_zone_config.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: |-
1111
Use this data source to query the available database specifications for different regions. And a maximum of 20 requests can be initiated per second for this query.
1212

1313
## Example Usage
14-
```
14+
```hcl
1515
data "tencentcloud_mysql_zone_config" "mysql" {
1616
region = "ap-guangzhou"
1717
result_output_file = "mytestpath"

website/docs/r/mysql_account.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Provides a MySQL account resource for database management. A MySQL instance supp
1313

1414
## Example Usage
1515

16-
```
16+
```hcl
1717
resource "tencentcloud_mysql_account" "default" {
1818
mysql_id = "my-test-database"
1919
name = "tf_account"

website/docs/r/mysql_account_privilege.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Provides a mysql account privilege resource to grant different access privilege
1515
## Example Usage
1616

1717

18-
```
18+
```hcl
1919
resource " tencentcloud_mysql_account_privilege" "default" {
2020
mysql_id = " my-test-database "
2121
account_name= "tf_account"

website/docs/r/mysql_backup_policy.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Provides a mysql policy resource to create a backup policy.
1212

1313
## Example Usage
1414

15-
```
15+
```hcl
1616
resource " tencentcloud_mysql_backup_policy " "default" {
1717
mysql_id = "cdb-dnqksd9f"
1818
retention_period = 7

website/docs/r/mysql_instance.html.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Provides a mysql instance resource to create master database instances.
1414

1515
## Example Usage
1616

17-
```
17+
```hcl
1818
resource " tencentcloud_mysql_instance" "default" {
1919
internet_service = 1
2020
engine_version = "5.7"
2121
parameters = {
22-
max_connections = "1000"
23-
}
22+
max_connections = "1000"
23+
}
2424
root_password = ******
2525
slave_deploy_mode = 0
2626
first_slave_zone = "ap-guangzhou-4"
@@ -36,8 +36,8 @@ resource " tencentcloud_mysql_instance" "default" {
3636
intranet_port = 3306
3737
security_groups = ["sg-ot8eclwz"]
3838
tags = {
39-
name ="test"
40-
}
39+
name ="test"
40+
}
4141
}
4242
4343
```

website/docs/r/mysql_readonly_instance.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Provides a mysql instance resource to create read-only database instances.
1313

1414
## Example Usage
1515

16-
```
16+
```hcl
1717
resource " tencentcloud_mysql_readonly_instance " "default" {
1818
master_instance_id = "cdb-dnqksd9f"
1919
instance_name =" myTestMysql"

0 commit comments

Comments
 (0)