Revert "Fixes #898: Replace hashicorp and terraform references" (#995)

This commit is contained in:
Christian Mesh
2023-12-11 15:10:03 -05:00
committed by GitHub
parent 6b864ef262
commit abd324ea7c
470 changed files with 1878 additions and 1952 deletions

View File

@@ -371,7 +371,7 @@ Because the configuration models are produced at a stage prior to expression eva
"name": "aws",
// "full_name" is the fully-qualified provider name
"full_name": "registry.opentofu.org/opentofu/aws",
"full_name": "registry.opentofu.org/hashicorp/aws",
// "alias" is the alias set for a non-default configuration, or unset for
// a default configuration.

View File

@@ -126,7 +126,7 @@ particular provider.
### Sample Request
```
curl 'https://tofu.example.com/providers/registry.tofu.io/opentofu/random/index.json'
curl 'https://tofu.example.com/providers/registry.tofu.io/hashicorp/random/index.json'
```
### Sample Response
@@ -183,7 +183,7 @@ archive containing the plugin itself.
### Sample Request
```
curl 'https://tofu.example.com/providers/registry.tofu.io/opentofu/random/2.0.0.json'
curl 'https://tofu.example.com/providers/registry.tofu.io/hashicorp/random/2.0.0.json'
```
### Sample Response
@@ -227,7 +227,7 @@ the following properties:
filename would cause OpenTofu to construct a URL like:
```
https://tofu.example.com/providers/registry.opentofu.org/opentofu/random/terraform-provider-random_2.0.0_darwin_amd64.zip
https://tofu.example.com/providers/registry.opentofu.org/hashicorp/random/terraform-provider-random_2.0.0_darwin_amd64.zip
```
* `hashes` (optional): a JSON array of strings containing one or more hash

View File

@@ -45,8 +45,8 @@ is optional, and if omitted defaults to `registry.opentofu.org/`.
For example:
* `opentofu/aws` is a shorthand for `registry.opentofu.org/opentofu/aws`,
which is the official AWS provider.
* `hashicorp/aws` is a shorthand for `registry.opentofu.org/hashicorp/aws`,
which is the official AWS provider published by HashiCorp.
* `example/foo` is a shorthand for `registry.opentofu.org/example/foo`, which
is a hypothetical third-party provider published on the public
OpenTofu Registry.