Skip to content

Commit 76d21ce

Browse files
authored
Update README to reference Trouze's repository
1 parent 2051203 commit 76d21ce

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Managing dbt Cloud infrastructure shouldn't require deep Terraform expertise. Wh
99
## Begin managing your dbt Platform resources as code in 60 seconds
1010

1111
```bash
12-
curl -fsSL https://github.com/dbt-labs/terraform-dbtcloud-as-yaml/releases/latest/download/install.sh | bash
12+
curl -fsSL https://github.com/trouze/terraform-dbtcloud-as-yaml/releases/latest/download/install.sh | bash
1313
```
1414

1515
This downloads the [topologies/basic/](topologies/basic/) starter into `./my-dbt-cloud`. No npm, no git magic — just curl and tar. To use a different directory name: `curl -fsSL ... | bash -s -- my-project`.
@@ -60,7 +60,7 @@ provider "dbtcloud" {
6060
}
6161
6262
module "dbt_cloud" {
63-
source = "github.com/dbt-labs/terraform-dbtcloud-as-yaml"
63+
source = "github.com/trouze/terraform-dbtcloud-as-yaml"
6464
6565
dbt_account_id = var.dbt_account_id
6666
dbt_token = var.dbt_token
@@ -78,7 +78,7 @@ module "dbt_cloud" {
7878
Configuration uses **`version: 1`**, an **`account`** block (including `host_url` for the dbt Cloud region), shared resources under **`globals`** (connections, service tokens, groups, notifications, PrivateLink endpoints), and a **`projects`** list. Validate in your editor with [`schemas/v1.json`](docs/configuration/yaml-schema.md).
7979

8080
```yaml
81-
# yaml-language-server: $schema=https://raw.githubusercontent.com/dbt-labs/terraform-dbtcloud-as-yaml/main/schemas/v1.json
81+
# yaml-language-server: $schema=https://raw.githubusercontent.com/trouze/terraform-dbtcloud-as-yaml/main/schemas/v1.json
8282

8383
version: 1
8484
account:

0 commit comments

Comments
 (0)