Skip to content

Commit 22e168b

Browse files
author
Nikita Dugar
committed
update url
1 parent 57314ae commit 22e168b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ This module has a few dependencies:
5757
Here is an example of how you can use this module in your inventory structure:
5858
```hcl
5959
module "security_group" {
60-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
60+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.1"
6161
name = "security-group"
6262
application = "clouddrove"
6363
environment = "test"

README.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ usage : |-
3636
Here is an example of how you can use this module in your inventory structure:
3737
```hcl
3838
module "security_group" {
39-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
39+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.1"
4040
name = "security-group"
4141
application = "clouddrove"
4242
environment = "test"

_example/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ provider "aws" {
33
}
44

55
module "vpc" {
6-
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git"
6+
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.12.1"
77

88
name = "vpc"
99
application = "clouddrove"
@@ -14,7 +14,7 @@ module "vpc" {
1414
}
1515

1616
module "security_group" {
17-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
17+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.1"
1818

1919
name = "security-group"
2020
application = "clouddrove"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# convention.
99

1010
module "labels" {
11-
source = "git::https://github.com/clouddrove/terraform-labels.git"
11+
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.12.1"
1212

1313
name = var.name
1414
application = var.application

0 commit comments

Comments
 (0)