Skip to content

Commit

Permalink
Update source in all example files
Browse files Browse the repository at this point in the history
  • Loading branch information
Talina06 committed Dec 8, 2023
1 parent 91ea25c commit 87d8989
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ setup: ## Install dev tools
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin $(GOLANGCI_VERSION)

.PHONY: check
check: tffmt tfcheck fmt docs-lint lint-fix test
check: setup tffmt tfcheck fmt docs-lint lint-fix test

.PHONY: docs-lint
docs-lint:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Terraform searches for the .terraformrc or .tfrc file in your home directory and
provider_installation {
dev_overrides {
"hashicorp.com/couchabasecloud/couchbase-capella" = "<PATH>"
"registry.terraform.io/couchbasecloud/couchbase-capella = "<PATH>"
}
# For all other providers, install them directly from their origin provider
Expand Down
2 changes: 1 addition & 1 deletion examples/allowlist/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/apikey/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/appservice/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/backup/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/backup_schedule/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/bucket/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/certificate/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/getting_started/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/organization/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/project/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/user/main.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
couchbase-capella = {
source = "hashicorp.com/couchbasecloud/couchbase-capella"
source = "registry.terraform.io/couchbasecloud/couchbase-capella"
}
}
}
Expand Down

0 comments on commit 87d8989

Please sign in to comment.