website: update website for subdirs

This commit is contained in:
Mitchell Hashimoto 2014-09-26 14:58:41 -07:00
parent 7aa30fdf25
commit 62ec0a3b4a
1 changed files with 10 additions and 2 deletions

View File

@ -64,10 +64,14 @@ Subdirectories within the repository can also be referenced:
``` ```
module "consul" { module "consul" {
source = "github.com/hashicorp/example/subdir" source = "github.com/hashicorp/example//subdir"
} }
``` ```
**Note:** The double-slash is important. It is what tells Terraform that
that is the separator for a subdirectory, and not part of the repository
itself.
GitHub source URLs will require that Git is installed on your system GitHub source URLs will require that Git is installed on your system
and that you have the proper access to the repository. and that you have the proper access to the repository.
@ -90,10 +94,14 @@ Subdirectories within the repository can also be referenced:
``` ```
module "consul" { module "consul" {
source = "bitbucket.org/hashicorp/example/subdir" source = "bitbucket.org/hashicorp/example//subdir"
} }
``` ```
**Note:** The double-slash is important. It is what tells Terraform that
that 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 BitBucket URLs will require that Git or Mercurial is installed on your
system, depending on the source URL. system, depending on the source URL.