-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pavel Bakhmetev
committed
Sep 13, 2024
1 parent
c9c9739
commit ec1e530
Showing
1 changed file
with
1 addition
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,17 +21,9 @@ The repository is organized as follows: | |
|
||
## Usage | ||
|
||
Terraform will recognize unprefixed github.com URLs and interpret them automatically as Git repository sources. | ||
``` | ||
module "example" { | ||
source = "github.com/devoteam/terraform-modules/example" | ||
} | ||
``` | ||
|
||
The above address scheme will clone over HTTPS. To clone over SSH, use the following form: | ||
``` | ||
module "example" { | ||
source = "[email protected]:devoteam/terraform-modules.git/example" | ||
source = "git::https://github.com/devoteam/terraform-modules.git//example" | ||
} | ||
``` | ||
|