Skip to content

Commit 4379d53

Browse files
committed
update tag
1 parent c294d3c commit 4379d53

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

example/database-subnet/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ provider "aws" {
66
## Vpc Module call.
77
##======================================================================
88
module "vpc" {
9-
source = "https://github.com/opszero/terraform-aws-subnet.git"
9+
source = "git@github.com:opszero/terraform-aws-vpc?ref=v1.0.0"
1010
name = "test"
1111
cidr_block = "10.0.0.0/16"
1212
}

example/private-subnet/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ provider "aws" {
66
## Vpc Module call.
77
##===========================================================================
88
module "vpc" {
9-
source = "https://github.com/opszero/terraform-aws-subnet.git"
9+
source = "git@github.com:opszero/terraform-aws-vpc?ref=v1.0.0"
1010
name = "test"
1111
cidr_block = "10.0.0.0/16"
1212
}

example/public-private-database-subnet/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ provider "aws" {
77
## Vpc Module call.
88
##=============================================================================
99
module "vpc" {
10-
source = "https://github.com/opszero/terraform-aws-subnet.git"
10+
source = "git@github.com:opszero/terraform-aws-vpc?ref=v1.0.0"
1111
name = "test"
1212
cidr_block = "10.0.0.0/16"
1313
}

example/public-private-subnet-single-nat-gateway/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ provider "aws" {
66
## Vpc Module call.
77
##============================================================================
88
module "vpc" {
9-
source = "https://github.com/opszero/terraform-aws-subnet.git"
9+
source = "git@github.com:opszero/terraform-aws-vpc?ref=v1.0.0"
1010
name = "test"
1111
cidr_block = "10.0.0.0/16"
1212
}

example/public-private/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ provider "aws" {
66
## Vpc Module call.
77
##============================================================================
88
module "vpc" {
9-
source = "https://github.com/opszero/terraform-aws-subnet.git"
9+
source = "git@github.com:opszero/terraform-aws-vpc?ref=v1.0.0"
1010
name = "test"
1111
cidr_block = "10.0.0.0/16"
1212
}

example/public-subnet/example.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ provider "aws" {
66
## Vpc Module call.
77
##=======================================================================
88
module "vpc" {
9-
source = "https://github.com/opszero/terraform-aws-subnet.git"
9+
source = "git@github.com:opszero/terraform-aws-vpc?ref=v1.0.0"
1010
name = "test"
1111
cidr_block = "10.0.0.0/16"
1212
}

0 commit comments

Comments
 (0)