Skip to content

Commit

Permalink
update url
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Dugar committed Sep 5, 2019
1 parent 86a45c2 commit 6eb3fb2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Here are some examples of how you can use this module in your inventory structur
### Private Subnet
```hcl
module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"
name = "subnets"
application = "clouddrove"
environment = "test"
Expand All @@ -87,7 +87,7 @@ Here are some examples of how you can use this module in your inventory structur
### Public-Private Subnet
```hcl
module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"
name = "subnets"
application = "clouddrove"
environment = "test"
Expand All @@ -104,7 +104,7 @@ Here are some examples of how you can use this module in your inventory structur
### Public Subnet
```hcl
module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"
name = "subnets"
application = "clouddrove"
environment = "test"
Expand Down
6 changes: 3 additions & 3 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ usage : |-
### Private Subnet
```hcl
module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"
name = "subnets"
application = "clouddrove"
environment = "test"
Expand All @@ -53,7 +53,7 @@ usage : |-
### Public-Private Subnet
```hcl
module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"
name = "subnets"
application = "clouddrove"
environment = "test"
Expand All @@ -70,7 +70,7 @@ usage : |-
### Public Subnet
```hcl
module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"
name = "subnets"
application = "clouddrove"
environment = "test"
Expand Down
4 changes: 2 additions & 2 deletions _example/private-subnet/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

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

name = "vpc"
application = "clouddrove"
Expand All @@ -14,7 +14,7 @@ module "vpc" {
}

module "private-subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"

name = "subnets"
application = "clouddrove"
Expand Down
4 changes: 2 additions & 2 deletions _example/public-private-subnet/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

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

name = "vpc"
application = "clouddrove"
Expand All @@ -14,7 +14,7 @@ module "vpc" {
}

module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"

name = "subnets"
application = "clouddrove"
Expand Down
4 changes: 2 additions & 2 deletions _example/public-subnet/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ provider "aws" {
}

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

name = "vpc"
application = "clouddrove"
Expand All @@ -14,7 +14,7 @@ module "vpc" {
}

module "subnets" {
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.1"

name = "subnets"
application = "clouddrove"
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ locals {
# tags for resources. You can use terraform-labels to implement a strict
# naming convention.
module "private-labels" {
source = "git::https://github.com/clouddrove/terraform-labels.git"
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.12.0"

name = var.name
application = var.application
Expand All @@ -24,7 +24,7 @@ module "private-labels" {
}

module "public-labels" {
source = "git::https://github.com/clouddrove/terraform-labels.git"
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.12.0"

name = var.name
application = var.application
Expand Down

0 comments on commit 6eb3fb2

Please sign in to comment.