website: Correct capitalization of "Bitbucket"
Previously we fixed this specifically for the Enterprise VCS integration, but we also had some long-running errors of this sort in the docs for how to specify module sources on Bitbucket.
This commit is contained in:
parent
3fa3ce60fa
commit
d157eea2e3
|
@ -17,7 +17,7 @@ Terraform supports the following sources:
|
||||||
|
|
||||||
* GitHub
|
* GitHub
|
||||||
|
|
||||||
* BitBucket
|
* Bitbucket
|
||||||
|
|
||||||
* Generic Git, Mercurial repositories
|
* Generic Git, Mercurial repositories
|
||||||
|
|
||||||
|
@ -85,9 +85,9 @@ module "private-infra" {
|
||||||
|
|
||||||
**Note:** Terraform does not yet support interpolations in the `source` field, so the machine username and password will have to be embedded directly into the `source` string. You can track [GH-1439](https://github.com/hashicorp/terraform/issues/1439) to learn when this limitation is addressed.
|
**Note:** Terraform does not yet support interpolations in the `source` field, so the machine username and password will have to be embedded directly into the `source` string. You can track [GH-1439](https://github.com/hashicorp/terraform/issues/1439) to learn when this limitation is addressed.
|
||||||
|
|
||||||
## BitBucket
|
## Bitbucket
|
||||||
|
|
||||||
Terraform will automatically recognize BitBucket URLs and turn them into a link to the specific Git or Mercurial repository, for example:
|
Terraform will automatically recognize Bitbucket URLs and turn them into a link to the specific Git or Mercurial repository, for example:
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
module "consul" {
|
module "consul" {
|
||||||
|
@ -105,7 +105,7 @@ module "consul" {
|
||||||
|
|
||||||
**Note:** The double-slash, `//`, is important. It is what tells Terraform that this is the separator for a subdirectory, and not part of the repository itself.
|
**Note:** The double-slash, `//`, is important. It is what tells Terraform that this is the separator for a subdirectory, and not part of the repository itself.
|
||||||
|
|
||||||
BitBucket URLs will require that Git or Mercurial is installed on your system, depending on the type of repository.
|
Bitbucket URLs will require that Git or Mercurial is installed on your system, depending on the type of repository.
|
||||||
|
|
||||||
## Generic Git Repository
|
## Generic Git Repository
|
||||||
|
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
<a href="/docs/enterprise/vcs/gitlab.html">GitLab</a>
|
<a href="/docs/enterprise/vcs/gitlab.html">GitLab</a>
|
||||||
</li>
|
</li>
|
||||||
<li<%= sidebar_current("docs-enterprise-vcs-bitbucket-cloud") %>>
|
<li<%= sidebar_current("docs-enterprise-vcs-bitbucket-cloud") %>>
|
||||||
<a href="/docs/enterprise/vcs/bitbucket.html">BitBucket</a>
|
<a href="/docs/enterprise/vcs/bitbucket.html">Bitbucket</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in New Issue