Merge pull request #26763 from hashicorp/radeksimko-patch-1

docs: fix typo in provider local name
This commit is contained in:
Radek Simko 2020-10-31 08:37:33 +00:00 committed by GitHub
commit a413fa7425
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -236,12 +236,12 @@ terraform {
# References to these providers elsewhere in the
# module will use these compound local names.
provider "mycorp_http" {
provider "mycorp-http" {
# ...
}
data "http" "example" {
provider = hashicorp_http
provider = hashicorp-http
#...
}
```