-
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 #2 from devopswithzack/dev
Dev
- Loading branch information
Showing
6 changed files
with
56 additions
and
24 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
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 |
---|---|---|
@@ -1,2 +1,18 @@ | ||
# labs-aws-networkfirewall | ||
This Terraform script will help to deploy AWS Network firewall and related resources to test the Lab. | ||
|
||
# AWS Network Firewall - Terraform | ||
|
||
This repo is used to deploy and test the LAB described in my dev.to blog post.Let's Play With AWS Network Firewall (Hands on Lab). | ||
|
||
![Logo](https://res.cloudinary.com/practicaldev/image/fetch/s--Jfn-9_l4--/c_imagga_scale,f_auto,fl_progressive,h_420,q_auto,w_1000/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hhlpdgjgwqg348wmnftk.png) | ||
|
||
|
||
## How to Deploy? | ||
|
||
Here is the dev.to link to my blog post how to test this lab. | ||
|
||
[dev.to Blog](https://github.com/matiassingers/awesome-readme) | ||
|
||
|
||
## Want to contribute? | ||
If you want to contribute to this LAB, please open a PR. | ||
|
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
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,10 @@ | ||
bucket = "< bucket_name_here >" | ||
key = "terraform/aws-nfw/terraform.tfstate" | ||
region = "us-east-1" | ||
dynamodb_table = "< dynamodb_table_name >" | ||
profile = "< profile >" | ||
encrypt = true | ||
|
||
|
||
|
||
|
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,24 @@ | ||
project = "devops-with-zack-demo" | ||
aws_profile = "dev" | ||
region = "us-east-1" | ||
az_a = "us-east-1a" | ||
team = "devops" | ||
env = "dev" | ||
|
||
#Inspection VPC | ||
inspection_vpc_cidr = "100.64.0.0/16" | ||
inspection_vpc_tgw_subnet_cidr = "100.64.144.0/20" | ||
inspection_vpc_firewall_subnet_cidr = "100.64.128.0/20" | ||
|
||
#App VPC | ||
app_vpc_cidr = "10.1.0.0/16" | ||
app_vpc_tgw_subnet_cidr = "10.1.128.0/20" | ||
app_vpc_application_workload_subnet_cidr = "10.1.144.0/20" | ||
|
||
#App VPC | ||
egress_vpc_cidr = "10.2.0.0/16" | ||
egress_vpc_tgw_subnet_cidr = "10.2.128.0/20" | ||
egress_vpc_igw_subnet_cidr = "10.2.144.0/20" | ||
|
||
#SSH Key - | ||
ssh_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