-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from developertown/fix/var-create-vpc
Fix/var create vpc
- Loading branch information
Showing
13 changed files
with
172 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,12 @@ jobs: | |
terraform_version: 1.4.6 | ||
terraform_wrapper: false | ||
|
||
- name: Setup Terragrunt | ||
uses: autero1/[email protected] | ||
with: | ||
terragrunt_version: 0.43.2 | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download Go Modules | ||
working-directory: test/src | ||
run: go mod download | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,12 @@ jobs: | |
terraform_version: 1.4.6 | ||
terraform_wrapper: false | ||
|
||
- name: Setup Terragrunt | ||
uses: autero1/[email protected] | ||
with: | ||
terragrunt_version: 0.43.2 | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download Go Modules | ||
working-directory: test/src | ||
run: go mod download | ||
|
@@ -26,4 +32,4 @@ jobs: | |
run: go test -v -timeout 60m -tags=unit | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
include { | ||
path = find_in_parent_folders() | ||
} | ||
|
||
terraform { | ||
source = "..//modules/complete" | ||
} | ||
|
||
inputs = { | ||
name = "example" | ||
region = "us-east-2" | ||
environment = "test" | ||
|
||
vpc_cidr = "10.0.0.0/16" | ||
} |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.