Skip to content

Commit 882a9df

Browse files
authored
Merge pull request #10 from opszero/update/tag
update tag
2 parents c294d3c + 4dd1cef commit 882a9df

File tree

8 files changed

+37
-30
lines changed

8 files changed

+37
-30
lines changed

.github/workflows/pre-commit.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
13-
- uses: actions/setup-python@v6
14-
- uses: pre-commit/action@v3.0.1
12+
- uses: actions/checkout@v4
13+
14+
- uses: actions/setup-python@v5
15+
with:
16+
python-version: "3.x"
17+
18+
- name: Setup Terraform
19+
uses: hashicorp/setup-terraform@v3
20+
with:
21+
terraform_version: 1.9.8
22+
23+
- uses: pre-commit/action@v3.0.1

README.md

Lines changed: 19 additions & 21 deletions
Large diffs are not rendered by default.

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::https://github.com/opszero/terraform-aws-vpc.git?ref=v1.0.1"
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::https://github.com/opszero/terraform-aws-vpc.git?ref=v1.0.1"
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::https://github.com/opszero/terraform-aws-vpc.git?ref=v1.0.1"
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::https://github.com/opszero/terraform-aws-vpc.git?ref=v1.0.1"
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::https://github.com/opszero/terraform-aws-vpc.git?ref=v1.0.1"
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::https://github.com/opszero/terraform-aws-vpc.git?ref=v1.0.1"
1010
name = "test"
1111
cidr_block = "10.0.0.0/16"
1212
}

0 commit comments

Comments
 (0)