File tree 2 files changed +24
-5
lines changed
2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,20 @@ description: |-
6
6
7
7
---
8
8
9
- # dbt-cloud Provider
10
-
9
+ # DBT Cloud Provider
11
10
11
+ This is a terraform provider plugin for managing [ DBT Cloud] ( https://cloud.getdbt.com/ ) accounts.
12
+ Given the current capabilities of the API we focus on the management of job definitions.
12
13
14
+ ## Example Provider Configuration
13
15
16
+ ``` terraform
17
+ provider "dbt" {
18
+ // required
19
+ account_id = ...
20
+ token = "..."
21
+ }
22
+ ```
14
23
15
24
<!-- schema generated by tfplugindocs -->
16
25
## Schema
Original file line number Diff line number Diff line change @@ -8,9 +8,19 @@ description: |-
8
8
9
9
# dbt_cloud_job (Resource)
10
10
11
-
12
-
13
-
11
+ ## Example Usage
12
+
13
+ ``` terraform
14
+ resource "dbt_cloud_job" "test" {
15
+ project_id = 101
16
+ environment_id = 1
17
+ name = "Test job"
18
+ execute_steps = [
19
+ "dbt run",
20
+ "dbt test"
21
+ ]
22
+ }
23
+ ```
14
24
15
25
<!-- schema generated by tfplugindocs -->
16
26
## Schema
You can’t perform that action at this time.
0 commit comments