Skip to content

Commit e86931a

Browse files
authored
chore: re-format docs (#1014)
1 parent edcdc5e commit e86931a

File tree

7 files changed

+34
-34
lines changed

7 files changed

+34
-34
lines changed

docs/guides/aws-workspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ module "vpc" {
130130
single_nat_gateway = true
131131
create_igw = true
132132
133-
public_subnets = [cidrsubnet(var.cidr_block, 3, 0)]
133+
public_subnets = [cidrsubnet(var.cidr_block, 3, 0)]
134134
private_subnets = [cidrsubnet(var.cidr_block, 3, 1),
135135
cidrsubnet(var.cidr_block, 3, 2)]
136136

docs/resources/job.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ By default, all users can create and modify jobs unless an administrator [enable
168168

169169
The `timeouts` block allows you to specify `create` and `update` timeouts if you have an `always_running` job. Please launch `TF_LOG=DEBUG terraform apply` whenever you observe timeout issues.
170170

171-
```hcl
171+
```
172172
timeouts {
173173
create = "20m"
174174
update = "20m

docs/resources/mws_networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module "vpc" {
3838
enable_nat_gateway = true
3939
create_igw = true
4040
41-
public_subnets = [cidrsubnet(var.cidr_block, 3, 0)]
41+
public_subnets = [cidrsubnet(var.cidr_block, 3, 0)]
4242
private_subnets = [cidrsubnet(var.cidr_block, 3, 1),
4343
cidrsubnet(var.cidr_block, 3, 2)]
4444

docs/resources/mws_workspaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ In addition to all arguments above, the following attributes are exported:
228228

229229
The `timeouts` block allows you to specify `create`, `read` and `update` timeouts. It usually takes 5-7 minutes to provision Databricks E2 Workspace and another couple of minutes for your local DNS caches to resolve. Please launch `TF_LOG=DEBUG terraform apply` whenever you observe timeout issues.
230230

231-
```hcl
231+
```
232232
timeouts {
233233
create = "30m"
234234
read = "10m"

docs/resources/permissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ resource "databricks_group" "eng" {
116116
}
117117
118118
data "databricks_node_type" "smallest" {
119-
local_disk = true
119+
local_disk = true
120120
}
121121
122122
resource "databricks_instance_pool" "this" {

docs/resources/pipeline.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,45 +9,45 @@ Use `databricks_pipeline` to deploy [Delta Live Tables](https://docs.databricks.
99

1010
```hcl
1111
resource "databricks_notebook" "dlt_demo" {
12-
...
12+
#...
1313
}
1414
1515
resource "databricks_pipeline" "this" {
16-
name = "Pipeline Name"
17-
storage = "/test/first-pipeline"
18-
configuration = {
19-
key1 = "value1"
20-
key2 = "value2"
21-
}
16+
name = "Pipeline Name"
17+
storage = "/test/first-pipeline"
18+
configuration = {
19+
key1 = "value1"
20+
key2 = "value2"
21+
}
2222
23-
cluster {
24-
label = "default"
25-
num_workers = 2
26-
custom_tags = {
27-
cluster_type = "default"
28-
}
23+
cluster {
24+
label = "default"
25+
num_workers = 2
26+
custom_tags = {
27+
cluster_type = "default"
2928
}
29+
}
3030
31-
cluster {
32-
label = "maintenance"
33-
num_workers = 1
34-
custom_tags = {
35-
cluster_type = "maintenance"
36-
}
31+
cluster {
32+
label = "maintenance"
33+
num_workers = 1
34+
custom_tags = {
35+
cluster_type = "maintenance"
3736
}
37+
}
3838
39-
library {
40-
notebook {
41-
path = databricks_notebook.dlt_demo.id
42-
}
39+
library {
40+
notebook {
41+
path = databricks_notebook.dlt_demo.id
4342
}
43+
}
4444
45-
filters {
46-
include = ["com.databricks.include"]
47-
exclude = ["com.databricks.exclude"]
48-
}
45+
filters {
46+
include = ["com.databricks.include"]
47+
exclude = ["com.databricks.exclude"]
48+
}
4949
50-
continuous = false
50+
continuous = false
5151
}
5252
```
5353

docs/resources/sql_permissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The created cluster could be referred to by providing its ID as `cluster_id` pro
2525
```hcl
2626
resource "databricks_sql_permissions" "foo_table" {
2727
cluster_id = databricks_cluster.cluster_name.id
28-
...
28+
#...
2929
}
3030
```
3131

0 commit comments

Comments
 (0)