Skip to content

Commit 68e1f47

Browse files
committed
chore: rename repository to match terraform registry requirements
1 parent d314b8e commit 68e1f47

10 files changed

Lines changed: 38 additions & 36 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# dbt-terraform-modules-yaml
1+
# terraform-dbtcloud-yaml
22

33
[![Terraform Version](https://img.shields.io/badge/terraform-%3E%3D%201.0-blue?logo=terraform)](https://www.terraform.io)
44
[![dbt Cloud Provider](https://img.shields.io/badge/dbt--cloud--provider-%3E%3D%201.3-blue)](https://registry.terraform.io/providers/dbt-labs/dbtcloud/latest)

docs/configuration/multi-project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ provider "dbtcloud" {
400400
}
401401
402402
module "dbt_cloud" {
403-
source = "git::https://github.com/trouze/dbt-terraform-modules-yaml.git"
403+
source = "git::https://github.com/trouze/terraform-dbtcloud-yaml.git"
404404
405405
dbt_account_id = var.dbt_account_id
406406
dbt_token = var.dbt_api_token

docs/configuration/yaml-schema.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ The YAML configuration is validated against a JSON Schema to ensure correctness.
1111
Add this to the top of your `dbt-config.yml`:
1212

1313
```yaml
14-
# yaml-language-server: $schema=https://raw.githubusercontent.com/trouze/dbt-terraform-modules-yaml/main/schemas/v1.json
14+
# yaml-language-server: $schema=https://raw.githubusercontent.com/trouze/terraform-dbtcloud-yaml/main/schemas/v1.json
1515

1616
project:
17-
name: "my-project"
17+
name: "my-dbt-project"
1818
...
1919
```
2020

@@ -392,7 +392,7 @@ environment_variables:
392392
Here's a full example combining all elements:
393393

394394
```yaml
395-
# yaml-language-server: $schema=https://raw.githubusercontent.com/trouze/dbt-terraform-modules-yaml/main/schemas/v1.json
395+
# yaml-language-server: $schema=https://raw.githubusercontent.com/trouze/terraform-dbtcloud-yaml/main/schemas/v1.json
396396
397397
project:
398398
name: "analytics"

docs/getting-started/examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ terraform plan
3535
terraform apply
3636
```
3737

38-
[:material-github: View Source](https://github.com/trouze/dbt-terraform-modules-yaml/tree/main/examples/basic){ .md-button }
38+
[:material-github: View Source](https://github.com/trouze/terraform-dbtcloud-yaml/tree/main/examples/basic){ .md-button }
3939

4040
---
4141

@@ -300,4 +300,4 @@ project:
300300
- **GitLab CI/CD Pipeline**
301301
- **Azure DevOps Integration**
302302

303-
Want to contribute an example? [Open a PR](https://github.com/trouze/dbt-terraform-modules-yaml/pulls)!
303+
Want to contribute an example? [Open a PR](https://github.com/trouze/terraform-dbtcloud-yaml/pulls)!

docs/getting-started/quickstart.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Before you begin, make sure you have:
1616
Start with the basic example as a template:
1717

1818
```bash
19-
git clone https://github.com/trouze/dbt-terraform-modules-yaml.git
20-
cd dbt-terraform-modules-yaml/examples/basic
19+
git clone https://github.com/trouze/terraform-dbtcloud-yaml.git
20+
cd terraform-dbtcloud-yaml/examples/basic
2121

2222
# Or copy to your own directory
2323
cp -r examples/basic ~/my-dbt-setup
@@ -119,9 +119,11 @@ terraform init
119119

120120
You should see:
121121

122+
```
122123
```
123124
Initializing modules...
124-
Downloading git::https://github.com/trouze/dbt-terraform-modules-yaml.git...
125+
Downloading git::https://github.com/trouze/terraform-dbtcloud-yaml.git...
126+
```
125127

126128
Terraform has been successfully initialized!
127129
```

docs/guides/best-practices.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ Use clear, descriptive names:
103103

104104
Always pin module versions:
105105

106+
```hcl
106107
```hcl
107108
module "dbt_cloud" {
108-
source = "git::https://github.com/trouze/dbt-terraform-modules-yaml.git?ref=v1.0.0"
109-
# NOT: source = "git::https://github.com/..." # ❌ Unpredictable
110-
}
109+
source = "git::https://github.com/trouze/terraform-dbtcloud-yaml.git?ref=v1.0.0"
110+
```
111111
```
112112
113113
---
@@ -249,7 +249,7 @@ Use schema validation in IDE:
249249

250250
```yaml
251251
# Add to top of dbt-config.yml
252-
# yaml-language-server: $schema=https://raw.githubusercontent.com/trouze/dbt-terraform-modules-yaml/main/schemas/v1.json
252+
# yaml-language-server: $schema=https://raw.githubusercontent.com/trouze/terraform-dbtcloud-yaml/main/schemas/v1.json
253253

254254
project:
255255
name: "my-project"
@@ -574,6 +574,6 @@ Before deploying to production:
574574

575575
## Getting Help
576576

577-
- 📖 [Documentation](https://trouze.github.io/dbt-terraform-modules-yaml)
578-
- 🐛 [Issues](https://github.com/trouze/dbt-terraform-modules-yaml/issues)
579-
- 💬 [Discussions](https://github.com/trouze/dbt-terraform-modules-yaml/discussions)
577+
- 📖 [Documentation](https://trouze.github.io/terraform-dbtcloud-yaml)
578+
- 🐛 [Issues](https://github.com/trouze/terraform-dbtcloud-yaml/issues)
579+
- 💬 [Discussions](https://github.com/trouze/terraform-dbtcloud-yaml/discussions)

docs/guides/troubleshooting.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ Still stuck? Here's how to get support:
525525

526526
### 1. Check Existing Issues
527527

528-
Search [GitHub Issues](https://github.com/trouze/dbt-terraform-modules-yaml/issues) for similar problems.
528+
Search [GitHub Issues](https://github.com/trouze/terraform-dbtcloud-yaml/issues) for similar problems.
529529

530530
### 2. Create Detailed Issue
531531

@@ -536,9 +536,9 @@ Include:
536536
- **Minimal config** that reproduces the issue
537537
- **What you've tried** already
538538

539-
### 3. Community Support
539+
### Community Support
540540

541-
- [GitHub Discussions](https://github.com/trouze/dbt-terraform-modules-yaml/discussions)
541+
- [GitHub Discussions](https://github.com/trouze/terraform-dbtcloud-yaml/discussions)
542542
- [dbt Community Slack](https://www.getdbt.com/community/)
543543

544544
---
@@ -616,14 +616,14 @@ Before deployment:
616616

617617
Report bugs or request features
618618

619-
[:octicons-arrow-right-24: Open Issue](https://github.com/trouze/dbt-terraform-modules-yaml/issues)
619+
[:octicons-arrow-right-24: Open Issue](https://github.com/trouze/terraform-dbtcloud-yaml/issues)
620620

621621
- :material-forum:{ .lg .middle } __Discussions__
622622

623623
---
624624

625625
Ask questions and share ideas
626626

627-
[:octicons-arrow-right-24: Join Discussion](https://github.com/trouze/dbt-terraform-modules-yaml/discussions)
627+
[:octicons-arrow-right-24: Join Discussion](https://github.com/trouze/terraform-dbtcloud-yaml/discussions)
628628

629629
</div>

docs/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# dbt-terraform-modules-yaml
1+
# terraform-dbtcloud-yaml
22

3-
[![Terraform Version](https://img.shields.io/badge/terraform-%3E%3D%201.0-blue?logo=terraform)](https://www.terraform.io) [![dbt Cloud Provider](https://img.shields.io/badge/dbt--cloud--provider-v1.3-blue)](https://registry.terraform.io/providers/dbt-labs/dbtcloud/latest) [![License](https://img.shields.io/badge/license-Apache%202.0-green)](https://github.com/trouze/dbt-terraform-modules-yaml/blob/main/LICENSE)
3+
[![Terraform Version](https://img.shields.io/badge/terraform-%3E%3D%201.0-blue?logo=terraform)](https://www.terraform.io) [![dbt Cloud Provider](https://img.shields.io/badge/dbt--cloud--provider-v1.3-blue)](https://registry.terraform.io/providers/dbt-labs/dbtcloud/latest) [![License](https://img.shields.io/badge/license-Apache%202.0-green)](https://github.com/trouze/terraform-dbtcloud-yaml/blob/main/LICENSE)
44

55
Manage your entire dbt Cloud setup with infrastructure-as-code using Terraform and YAML. Define projects, repositories, environments, credentials, and jobs in a single, human-readable YAML file.
66

@@ -29,8 +29,8 @@ Get started in 3 simple steps:
2929

3030
```bash
3131
# Clone or copy the basic example
32-
git clone https://github.com/trouze/dbt-terraform-modules-yaml.git
33-
cd dbt-terraform-modules-yaml/examples/basic
32+
git clone https://github.com/trouze/terraform-dbtcloud-yaml.git
33+
cd terraform-dbtcloud-yaml/examples/basic
3434

3535
# Or copy to your own directory
3636
cp -r examples/basic my-dbt-setup
@@ -199,12 +199,12 @@ Automatically configures your Git provider:
199199
## Community & Support
200200

201201
- 📖 **Documentation** - You're reading it!
202-
- 🐛 **Issues** - [Report bugs or request features](https://github.com/trouze/dbt-terraform-modules-yaml/issues)
203-
- 💬 **Discussions** - [Share ideas and best practices](https://github.com/trouze/dbt-terraform-modules-yaml/discussions)
202+
- 🐛 **Issues** - [Report bugs or request features](https://github.com/trouze/terraform-dbtcloud-yaml/issues)
203+
- 💬 **Discussions** - [Share ideas and best practices](https://github.com/trouze/terraform-dbtcloud-yaml/discussions)
204204

205205
## License
206206

207-
This project is licensed under Apache License 2.0. See [LICENSE](https://github.com/trouze/dbt-terraform-modules-yaml/blob/main/LICENSE) for details.
207+
This project is licensed under Apache License 2.0. See [LICENSE](https://github.com/trouze/terraform-dbtcloud-yaml/blob/main/LICENSE) for details.
208208

209209
---
210210

examples/basic/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ provider "dbtcloud" {
1414
token = var.dbt_api_token
1515
}
1616

17-
# Test the dbt-terraform-modules-yaml module from GitHub
17+
# Test the terraform-dbtcloud-yaml module from GitHub
1818
module "dbt_cloud_test" {
19-
source = "git::https://github.com/trouze/dbt-terraform-modules-yaml.git?ref=v0.1.0-alpha"
19+
source = "git::https://github.com/trouze/terraform-dbtcloud-yaml.git?ref=v0.1.0-alpha"
2020

2121
dbt_account_id = var.dbt_account_id
2222
dbt_token = var.dbt_token

mkdocs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
site_name: dbt-terraform-modules-yaml
1+
site_name: terraform-dbtcloud-yaml
22
site_description: Manage dbt Cloud infrastructure with Terraform using YAML configuration
33
site_author: Tyler Rouze
4-
site_url: https://trouze.github.io/dbt-terraform-modules-yaml
4+
site_url: https://trouze.github.io/terraform-dbtcloud-yaml
55

6-
repo_url: https://github.com/trouze/dbt-terraform-modules-yaml
7-
repo_name: trouze/dbt-terraform-modules-yaml
6+
repo_url: https://github.com/trouze/terraform-dbtcloud-yaml
7+
repo_name: trouze/terraform-dbtcloud-yaml
88
edit_uri: edit/main/docs/
99

1010
theme:
@@ -120,7 +120,7 @@ markdown_extensions:
120120
extra:
121121
social:
122122
- icon: fontawesome/brands/github
123-
link: https://github.com/trouze/dbt-terraform-modules-yaml
123+
link: https://github.com/trouze/terraform-dbtcloud-yaml
124124
name: GitHub Repository
125125
generator: false
126126

0 commit comments

Comments
 (0)