Skip to content

Commit 3c7e291

Browse files
author
Nikita Dugar
committed
update url
1 parent b905b18 commit 3c7e291

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This module has a few dependencies:
7070
Here is an example of how you can use this module in your inventory structure:
7171
```hcl
7272
module "ec2" {
73-
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git"
73+
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git?ref=tags/0.12.1"
7474
name = "ec2-instance"
7575
application = "clouddrove"
7676
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 "ec2" {
39-
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git"
39+
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git?ref=tags/0.12.1"
4040
name = "ec2-instance"
4141
application = "clouddrove"
4242
environment = "test"

_example/example.tf

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

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

88
key_path = "~/.ssh/id_rsa.pub"
99
key_name = "main-key"
1010
enable_key_pair = true
1111
}
1212

1313
module "vpc" {
14-
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git"
14+
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.12.1"
1515

1616
name = "vpc"
1717
application = "clouddrove"
@@ -22,7 +22,7 @@ module "vpc" {
2222
}
2323

2424
module "public_subnets" {
25-
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
25+
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"
2626

2727
name = "public-subnet"
2828
application = "clouddrove"
@@ -37,7 +37,7 @@ module "public_subnets" {
3737
}
3838

3939
module "http-https" {
40-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
40+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.1"
4141

4242
name = "http-https"
4343
application = "clouddrove"
@@ -50,7 +50,7 @@ module "http-https" {
5050
}
5151

5252
module "ssh" {
53-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
53+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.1"
5454

5555
name = "ssh"
5656
application = "clouddrove"
@@ -63,7 +63,7 @@ module "ssh" {
6363
}
6464

6565
module "ec2" {
66-
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git"
66+
source = "git::https://github.com/clouddrove/terraform-aws-ec2.git?ref=tags/0.12.1"
6767

6868
name = "ec2-instance"
6969
application = "clouddrove"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#Module : Label
66
#Description : This terraform module is designed to generate consistent label names and # tags for resources. You can use terraform-labels to implement a strict # naming convention.
77
module "labels" {
8-
source = "git::https://github.com/clouddrove/terraform-labels.git"
8+
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.12.0"
99

1010
name = var.name
1111
application = var.application

0 commit comments

Comments
 (0)