Skip to content

Commit

Permalink
update docs to not require environment for provider init (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
haruska authored Apr 3, 2024
1 parent 4d122f5 commit 4387937
Show file tree
Hide file tree
Showing 13 changed files with 1 addition and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ following to your Terraform configuration file:
```terraform
terraform {
required_providers {
openai = {
pinecone = {
source = "pinecone-io/pinecone"
}
}
Expand Down
1 change: 0 additions & 1 deletion docs/data-sources/collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ terraform {
}
provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}
Expand Down
1 change: 0 additions & 1 deletion docs/data-sources/collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ terraform {
}
provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}
Expand Down
1 change: 0 additions & 1 deletion docs/data-sources/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ terraform {
}
provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}
Expand Down
1 change: 0 additions & 1 deletion docs/data-sources/indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ terraform {
}
provider "pinecone" {
environment = "gcp-starter"
# api_key = set via PINECONE_API_KEY env variable
}
Expand Down
1 change: 0 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ terraform {
}
provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}
```
Expand Down
1 change: 0 additions & 1 deletion docs/resources/collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ terraform {
}
provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}
Expand Down
1 change: 0 additions & 1 deletion examples/data-sources/pinecone_collection/data-source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ terraform {
}

provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}

Expand Down
1 change: 0 additions & 1 deletion examples/data-sources/pinecone_collections/data-source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ terraform {
}

provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}

Expand Down
1 change: 0 additions & 1 deletion examples/data-sources/pinecone_index/data-source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ terraform {
}

provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}

Expand Down
1 change: 0 additions & 1 deletion examples/data-sources/pinecone_indexes/data-source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ terraform {
}

provider "pinecone" {
environment = "gcp-starter"
# api_key = set via PINECONE_API_KEY env variable
}

Expand Down
1 change: 0 additions & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ terraform {
}

provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}
1 change: 0 additions & 1 deletion examples/resources/pinecone_collection/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ terraform {
}

provider "pinecone" {
environment = "us-west4-gcp"
# api_key = set via PINECONE_API_KEY env variable
}

Expand Down

0 comments on commit 4387937

Please sign in to comment.